結果

問題 No.1665 quotient replace
ユーザー HaaHaa
提出日時 2021-09-03 21:39:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 3,000 ms
コード長 938 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 169,480 KB
実行使用メモリ 18,992 KB
最終ジャッジ日時 2024-12-15 11:04:00
合計ジャッジ時間 8,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
10,968 KB
testcase_01 AC 13 ms
11,024 KB
testcase_02 AC 14 ms
11,076 KB
testcase_03 AC 14 ms
11,036 KB
testcase_04 AC 14 ms
11,028 KB
testcase_05 AC 12 ms
11,024 KB
testcase_06 AC 15 ms
11,248 KB
testcase_07 AC 15 ms
11,072 KB
testcase_08 AC 16 ms
11,072 KB
testcase_09 AC 24 ms
11,236 KB
testcase_10 AC 108 ms
13,672 KB
testcase_11 AC 224 ms
16,900 KB
testcase_12 AC 38 ms
11,612 KB
testcase_13 AC 290 ms
18,932 KB
testcase_14 AC 287 ms
18,992 KB
testcase_15 AC 292 ms
18,824 KB
testcase_16 AC 289 ms
18,852 KB
testcase_17 AC 290 ms
18,860 KB
testcase_18 AC 14 ms
11,172 KB
testcase_19 AC 14 ms
11,120 KB
testcase_20 AC 13 ms
11,028 KB
testcase_21 AC 14 ms
11,092 KB
testcase_22 AC 13 ms
11,120 KB
testcase_23 AC 13 ms
11,080 KB
testcase_24 AC 13 ms
11,068 KB
testcase_25 AC 14 ms
10,968 KB
testcase_26 AC 14 ms
11,048 KB
testcase_27 AC 15 ms
11,080 KB
testcase_28 AC 22 ms
11,304 KB
testcase_29 AC 33 ms
11,604 KB
testcase_30 AC 162 ms
15,124 KB
testcase_31 AC 235 ms
17,240 KB
testcase_32 AC 216 ms
16,644 KB
testcase_33 AC 89 ms
13,104 KB
testcase_34 AC 176 ms
15,520 KB
testcase_35 AC 163 ms
15,168 KB
testcase_36 AC 167 ms
15,476 KB
testcase_37 AC 156 ms
14,940 KB
testcase_38 AC 185 ms
15,880 KB
testcase_39 AC 136 ms
14,368 KB
testcase_40 AC 134 ms
14,308 KB
testcase_41 AC 135 ms
14,352 KB
testcase_42 AC 14 ms
11,032 KB
testcase_43 AC 15 ms
11,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(ll i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T &x, const T &y) {return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T &x, const T &y) {return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

const int M=1000000;

int main(){
    int n; cin >> n;
    VI a(n); REP(i,n) cin >> a[i];
    VI p(M+1,0);
    for(int i=2;i<=M;i++){
        if(p[i]==0){
            ll pw=1;
            while(pw*i<=M){
                pw=pw*i;
                for(ll j=pw;j<=M;j+=pw){
                    p[j]++;
                }
            }
        }
    }
    ll x=0;
    REP(i,n){
        x=(x^p[a[i]]);
    }
    if(x!=0)
        cout << "white" << endl;
    else
        cout << "black" << endl;
    return 0;
}
0