CF573A.Bear and Poker
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Limak is an old brown bear. He often plays poker with his friends. Today they went to a casino. There are n players (including Limak himself) and right now all of them have bids on the table. i -th of them has bid with size ai dollars.
Each player can double his bid any number of times and triple his bid any number of times. The casino has a great jackpot for making all bids equal. Is it possible that Limak and his friends will win a jackpot?
输入格式
First line of input contains an integer n ( 2<=n<=105 ), the number of players.
The second line contains n integer numbers a1,a2,...,an ( 1<=ai<=109 ) — the bids of players.
输出格式
Print "Yes" (without the quotes) if players can make their bids become equal, or "No" otherwise.
输入输出样例
输入#1
4 75 150 75 50
输出#1
Yes
输入#2
3 100 150 250
输出#2
No
说明/提示
In the first sample test first and third players should double their bids twice, second player should double his bid once and fourth player should both double and triple his bid.
It can be shown that in the second sample test there is no way to make all bids equal.