A. Bear and Poker

来源:互联网 发布:手机淘宝1元秒杀入口 编辑:程序博客网 时间:2024/04/29 08:23

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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?

Input

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.

Output

Print "Yes" (without the quotes) if players can make their bids become equal, or "No" otherwise.

Sample test(s)
input
475 150 75 50
output
Yes
input
3100 150 250
output
No
Note

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.


解题说明:此题要求一组数中的元素乘以2或者乘以3后得到的数都一样,其实就是判断这些数除去2和3这些因子后剩下的因子都是一样的即可。


#include<stdio.h>#include <string.h>#include<iostream>#include<algorithm>using namespace std;int main(){int i, ans = 1, n, a[100002];scanf("%d", &n);for(i=0; i<n; i++){scanf("%d", a+i);while(a[i]%2 == 0){a[i] /= 2;}while(a[i]%3 == 0){a[i] /= 3;}}for(i = 1; i < n; i++){if (a[i-1] != a[i]){ans = 0;break;}}if (ans == 1){printf("Yes\n");}else{printf("No\n");}return 0;}


0 0