結果

問題 No.1665 quotient replace
ユーザー abc3abc3
提出日時 2021-09-04 00:13:16
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,417 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 207,736 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-12-15 19:57:05
合計ジャッジ時間 32,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,520 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 16 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 10 ms
5,248 KB
testcase_09 AC 55 ms
5,248 KB
testcase_10 AC 617 ms
5,248 KB
testcase_11 AC 1,384 ms
6,144 KB
testcase_12 AC 152 ms
5,248 KB
testcase_13 AC 1,830 ms
6,956 KB
testcase_14 AC 1,825 ms
7,168 KB
testcase_15 AC 1,827 ms
7,040 KB
testcase_16 AC 1,848 ms
7,104 KB
testcase_17 AC 1,822 ms
7,148 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 13 ms
5,248 KB
testcase_27 AC 43 ms
5,248 KB
testcase_28 AC 197 ms
5,248 KB
testcase_29 AC 407 ms
5,248 KB
testcase_30 AC 2,984 ms
5,376 KB
testcase_31 TLE -
testcase_32 AC 1,325 ms
6,016 KB
testcase_33 AC 498 ms
5,248 KB
testcase_34 AC 1,073 ms
5,504 KB
testcase_35 AC 971 ms
5,376 KB
testcase_36 AC 1,020 ms
5,376 KB
testcase_37 AC 931 ms
5,376 KB
testcase_38 AC 1,121 ms
5,632 KB
testcase_39 AC 783 ms
5,248 KB
testcase_40 AC 787 ms
5,248 KB
testcase_41 AC 789 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
10,496 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];
        map<int,int>mp;
        ll ans=0;
        rep(i,n){
            auto t=prime_factorize(a[i]);
            ll s=0;
            for(auto u:t){
                s+=u.second;
            }
            ans^=s;
        }
        if(ans){cout<<"white"<<endl;}
        else{cout<<"black"<<endl;}
    }  

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