結果

問題 No.103 素因数ゲーム リターンズ
ユーザー iomiriomir
提出日時 2023-04-29 01:35:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 284 ms / 5,000 ms
コード長 1,011 bytes
コンパイル時間 1,868 ms
コンパイル使用メモリ 172,032 KB
実行使用メモリ 81,556 KB
最終ジャッジ日時 2024-11-18 00:06:39
合計ジャッジ時間 9,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
81,384 KB
testcase_01 AC 280 ms
81,460 KB
testcase_02 AC 277 ms
81,352 KB
testcase_03 AC 282 ms
81,508 KB
testcase_04 AC 274 ms
81,464 KB
testcase_05 AC 275 ms
81,324 KB
testcase_06 AC 278 ms
81,280 KB
testcase_07 AC 284 ms
81,328 KB
testcase_08 AC 277 ms
81,304 KB
testcase_09 AC 277 ms
81,424 KB
testcase_10 AC 275 ms
81,324 KB
testcase_11 AC 277 ms
81,324 KB
testcase_12 AC 273 ms
81,484 KB
testcase_13 AC 276 ms
81,284 KB
testcase_14 AC 275 ms
81,460 KB
testcase_15 AC 276 ms
81,424 KB
testcase_16 AC 277 ms
81,344 KB
testcase_17 AC 280 ms
81,556 KB
testcase_18 AC 281 ms
81,520 KB
testcase_19 AC 276 ms
81,320 KB
testcase_20 AC 278 ms
81,284 KB
testcase_21 AC 281 ms
81,352 KB
testcase_22 AC 274 ms
81,304 KB
testcase_23 AC 275 ms
81,408 KB
testcase_24 AC 277 ms
81,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define all(v) v.begin(),v.end()
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
using vvll = vector<vector<ll>>;
const ll INF=1ll<<60;
using vp=vector<pair<ll, ll>>;

int main(){
    ll N;
    cin>>N;
    vll A(N);
    for(auto &e:A) cin >>e;
    
   vector<ll> pri(1e7);
   for(int i=0;i<=1e7;i++) pri[i]=i;
   for(ll i=2;i<=1e7;i++){
       if(pri[i]!=i) continue;
       ll j=1;
       while(i*j<=1e7){
           pri[i*j]=min(i,pri[i*j]);
           j++;
       }
   }

    vll B;
    for(int i=0;i<N;i++){
        ll now=pri[A[i]];
        ll cnt=0;
        while(A[i]>1){
            if(now==pri[A[i]])A[i]/=pri[A[i]],cnt++;
            else{
                B.push_back(cnt%3);
                now=pri[A[i]];
                A[i]/=pri[A[i]];
                cnt=1;
            }
        }
        B.push_back(cnt%3);
    }


    ll a=0;
    for(auto x:B) a^=x;
    if(a) cout << "Alice" << endl;
    else cout << "Bob" << endl;
}
0