結果

問題 No.1665 quotient replace
ユーザー abc3abc3
提出日時 2021-09-04 00:19:52
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 177 ms / 3,000 ms
コード長 1,572 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 205,556 KB
実行使用メモリ 11,036 KB
最終ジャッジ日時 2024-12-15 20:07:08
合計ジャッジ時間 6,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,144 KB
testcase_01 AC 13 ms
7,168 KB
testcase_02 AC 12 ms
7,168 KB
testcase_03 AC 13 ms
7,084 KB
testcase_04 AC 12 ms
7,020 KB
testcase_05 AC 13 ms
7,208 KB
testcase_06 AC 14 ms
7,168 KB
testcase_07 AC 13 ms
7,132 KB
testcase_08 AC 13 ms
7,168 KB
testcase_09 AC 17 ms
7,296 KB
testcase_10 AC 66 ms
8,412 KB
testcase_11 AC 137 ms
9,944 KB
testcase_12 AC 26 ms
7,424 KB
testcase_13 AC 175 ms
11,008 KB
testcase_14 AC 174 ms
11,008 KB
testcase_15 AC 177 ms
10,996 KB
testcase_16 AC 176 ms
11,036 KB
testcase_17 AC 176 ms
11,008 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 12 ms
7,108 KB
testcase_20 AC 12 ms
7,136 KB
testcase_21 AC 12 ms
7,168 KB
testcase_22 AC 12 ms
7,168 KB
testcase_23 AC 12 ms
7,040 KB
testcase_24 AC 13 ms
7,040 KB
testcase_25 AC 13 ms
6,948 KB
testcase_26 AC 13 ms
7,168 KB
testcase_27 AC 12 ms
7,040 KB
testcase_28 AC 16 ms
7,212 KB
testcase_29 AC 19 ms
7,424 KB
testcase_30 AC 64 ms
9,136 KB
testcase_31 AC 93 ms
10,240 KB
testcase_32 AC 129 ms
9,984 KB
testcase_33 AC 56 ms
8,176 KB
testcase_34 AC 106 ms
9,448 KB
testcase_35 AC 97 ms
9,088 KB
testcase_36 AC 100 ms
9,312 KB
testcase_37 AC 93 ms
9,008 KB
testcase_38 AC 108 ms
9,496 KB
testcase_39 AC 79 ms
8,828 KB
testcase_40 AC 82 ms
8,796 KB
testcase_41 AC 80 ms
8,832 KB
testcase_42 AC 12 ms
7,168 KB
testcase_43 AC 12 ms
7,168 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