码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #318 (Div. 2) C Bear and Poker

时间:2015-08-30 09:53:19      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

很简单,求一下所有数的2和3的幂是任意调整的,把2和3的因子除掉以后必须相等。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

const int maxn = 1e5+5;
ll a[maxn];


int main()
{
    //freopen("in.txt","r",stdin);
    int n;
    scanf("%d",&n);
    for(int i = 0; i < n; i++){
        scanf("%I64d",a+i);
        while(a[i]%2 == 0) a[i]/=2;
        while(a[i]%3 == 0) a[i]/=3;
    }
    for(int i = 1; i < n; i++){
        if(a[i]!=a[i-1]) {
            puts("NO"); return 0;
        }
    }
    puts("YES");
    return 0;
}

 

Codeforces Round #318 (Div. 2) C Bear and Poker

标签:

原文地址:http://www.cnblogs.com/jerryRey/p/4770260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!