結果

問題 No.1665 quotient replace
ユーザー HaaHaa
提出日時 2021-09-03 21:39:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 328 ms / 3,000 ms
コード長 938 bytes
コンパイル時間 1,662 ms
コンパイル使用メモリ 170,296 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-05-09 02:30:34
合計ジャッジ時間 8,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
10,968 KB
testcase_01 AC 16 ms
11,136 KB
testcase_02 AC 15 ms
11,008 KB
testcase_03 AC 17 ms
10,976 KB
testcase_04 AC 17 ms
11,000 KB
testcase_05 AC 16 ms
11,136 KB
testcase_06 AC 18 ms
11,088 KB
testcase_07 AC 16 ms
11,008 KB
testcase_08 AC 17 ms
11,008 KB
testcase_09 AC 26 ms
11,264 KB
testcase_10 AC 123 ms
13,660 KB
testcase_11 AC 250 ms
16,896 KB
testcase_12 AC 41 ms
11,640 KB
testcase_13 AC 328 ms
18,816 KB
testcase_14 AC 321 ms
18,692 KB
testcase_15 AC 321 ms
18,816 KB
testcase_16 AC 325 ms
18,816 KB
testcase_17 AC 324 ms
18,664 KB
testcase_18 AC 17 ms
11,008 KB
testcase_19 AC 15 ms
11,008 KB
testcase_20 AC 15 ms
11,008 KB
testcase_21 AC 15 ms
11,072 KB
testcase_22 AC 17 ms
11,032 KB
testcase_23 AC 16 ms
10,996 KB
testcase_24 AC 16 ms
11,020 KB
testcase_25 AC 16 ms
11,136 KB
testcase_26 AC 16 ms
11,008 KB
testcase_27 AC 18 ms
11,048 KB
testcase_28 AC 29 ms
11,140 KB
testcase_29 AC 38 ms
11,520 KB
testcase_30 AC 179 ms
14,976 KB
testcase_31 AC 255 ms
17,088 KB
testcase_32 AC 237 ms
16,740 KB
testcase_33 AC 102 ms
13,184 KB
testcase_34 AC 202 ms
15,616 KB
testcase_35 AC 182 ms
15,216 KB
testcase_36 AC 189 ms
15,344 KB
testcase_37 AC 172 ms
14,976 KB
testcase_38 AC 207 ms
15,840 KB
testcase_39 AC 147 ms
14,336 KB
testcase_40 AC 149 ms
14,336 KB
testcase_41 AC 152 ms
14,336 KB
testcase_42 AC 18 ms
11,008 KB
testcase_43 AC 16 ms
11,008 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