| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 (추가 시간 없음) | 256 MB | 145 | 39 | 29 | 28.155% |
Given a list of numbers, determine whether one of these numbers equals the product of all the other numbers.
The first line of the input file contains a single integer $N$ --- the number of elements in the initial list (2ドル \leq N \leq 10^5$). The next line contains $N$ space-separated numbers constituting the list. Each of these numbers is an integer not greater than 10ドル^9$ in absolute value.
In the first line of the output file, print Yes or No, depending on whether some number from the list is equal to the product of all the other numbers --- or not. If the answer is Yes, in the second line, print such a number. If several numbers satisfy the conditions of the problem, print any of them.
3 2 4 2
Yes 4
2 2 3
No