結果

問題 No.1665 quotient replace
ユーザー abc3abc3
提出日時 2021-09-04 00:19:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 185 ms / 3,000 ms
コード長 1,572 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 205,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-09 08:48:00
合計ジャッジ時間 7,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,168 KB
testcase_01 AC 13 ms
7,168 KB
testcase_02 AC 13 ms
7,168 KB
testcase_03 AC 13 ms
7,168 KB
testcase_04 AC 13 ms
7,168 KB
testcase_05 AC 12 ms
7,168 KB
testcase_06 AC 14 ms
7,040 KB
testcase_07 AC 13 ms
7,168 KB
testcase_08 AC 13 ms
7,040 KB
testcase_09 AC 17 ms
7,296 KB
testcase_10 AC 70 ms
8,448 KB
testcase_11 AC 143 ms
10,112 KB
testcase_12 AC 26 ms
7,424 KB
testcase_13 AC 185 ms
11,008 KB
testcase_14 AC 182 ms
11,008 KB
testcase_15 AC 183 ms
11,008 KB
testcase_16 AC 183 ms
11,008 KB
testcase_17 AC 181 ms
10,880 KB
testcase_18 AC 13 ms
7,168 KB
testcase_19 AC 12 ms
7,040 KB
testcase_20 AC 13 ms
7,168 KB
testcase_21 AC 12 ms
7,168 KB
testcase_22 AC 13 ms
7,168 KB
testcase_23 AC 13 ms
7,040 KB
testcase_24 AC 13 ms
7,040 KB
testcase_25 AC 12 ms
7,168 KB
testcase_26 AC 13 ms
7,168 KB
testcase_27 AC 13 ms
7,168 KB
testcase_28 AC 17 ms
7,296 KB
testcase_29 AC 20 ms
7,424 KB
testcase_30 AC 65 ms
8,960 KB
testcase_31 AC 94 ms
10,240 KB
testcase_32 AC 139 ms
9,856 KB
testcase_33 AC 58 ms
8,064 KB
testcase_34 AC 110 ms
9,344 KB
testcase_35 AC 101 ms
9,216 KB
testcase_36 AC 110 ms
9,344 KB
testcase_37 AC 99 ms
9,088 KB
testcase_38 AC 116 ms
9,472 KB
testcase_39 AC 86 ms
8,832 KB
testcase_40 AC 85 ms
8,832 KB
testcase_41 AC 86 ms
8,832 KB
testcase_42 AC 13 ms
7,040 KB
testcase_43 AC 13 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

    #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)
    typedef long long ll;
    typedef long double ld;
    using P=pair<ll,ll>;
    const ld INF=1e18;
    const int mod=1e9+7;

    vector<pair<ll,ll>>prime_factorize(ll N) {
      vector<pair<ll,ll>>res;
      for (ll i= 2; i*i<=N;i++) {
        if (N%i!=0){continue;}
        ll cnt=0; 
        while(N%i==0){
          cnt++;
          N/=i;
        }
        res.push_back({i, cnt});
      }
      if(N!=1){res.push_back({N, 1});}
      return res;
    }

    void solve(){
        int n;
        cin>>n;
        vector<int>a(n);
        rep(i,n) cin>>a[i];
        vector<int>d(1000001);
        for(int i=2;i<=1000000;i++){
            if(d[i]){continue;}
            for(int j=i;j<=1000000;j+=i){
                d[j]=i;
            }
        }
        int ans=0;
        rep(i,n){
            int cnt=0;
            while(a[i]>1){
                a[i]/=d[a[i]];
                cnt++;
            }
            ans^=cnt;
        }
        if(ans){cout<<"white"<<endl;}
        else{cout<<"black"<<endl;}
    }  

    int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        
        solve();
        
        return 0;
    }
0