結果

問題 No.1665 quotient replace
ユーザー karinohitokarinohito
提出日時 2021-09-03 23:06:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 400 ms / 3,000 ms
コード長 826 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 168,544 KB
実行使用メモリ 11,212 KB
最終ジャッジ日時 2024-12-15 17:09:48
合計ジャッジ時間 8,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
11,208 KB
testcase_01 AC 12 ms
11,100 KB
testcase_02 AC 13 ms
11,148 KB
testcase_03 AC 12 ms
10,992 KB
testcase_04 AC 14 ms
11,100 KB
testcase_05 AC 12 ms
11,072 KB
testcase_06 AC 17 ms
11,068 KB
testcase_07 AC 13 ms
11,140 KB
testcase_08 AC 15 ms
10,992 KB
testcase_09 AC 24 ms
11,032 KB
testcase_10 AC 141 ms
11,128 KB
testcase_11 AC 307 ms
11,116 KB
testcase_12 AC 45 ms
11,000 KB
testcase_13 AC 398 ms
11,056 KB
testcase_14 AC 400 ms
11,056 KB
testcase_15 AC 397 ms
11,024 KB
testcase_16 AC 399 ms
11,132 KB
testcase_17 AC 398 ms
11,212 KB
testcase_18 AC 13 ms
11,160 KB
testcase_19 AC 12 ms
11,096 KB
testcase_20 AC 12 ms
11,000 KB
testcase_21 AC 13 ms
11,004 KB
testcase_22 AC 13 ms
11,144 KB
testcase_23 AC 12 ms
11,020 KB
testcase_24 AC 13 ms
11,008 KB
testcase_25 AC 12 ms
10,968 KB
testcase_26 AC 13 ms
11,024 KB
testcase_27 AC 14 ms
11,032 KB
testcase_28 AC 23 ms
11,056 KB
testcase_29 AC 32 ms
11,148 KB
testcase_30 AC 156 ms
11,072 KB
testcase_31 AC 233 ms
11,152 KB
testcase_32 AC 288 ms
11,032 KB
testcase_33 AC 117 ms
11,160 KB
testcase_34 AC 238 ms
11,092 KB
testcase_35 AC 217 ms
11,028 KB
testcase_36 AC 225 ms
10,992 KB
testcase_37 AC 206 ms
11,024 KB
testcase_38 AC 256 ms
10,968 KB
testcase_39 AC 180 ms
11,008 KB
testcase_40 AC 178 ms
11,104 KB
testcase_41 AC 177 ms
11,148 KB
testcase_42 AC 13 ms
11,000 KB
testcase_43 AC 14 ms
11,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include<atcoder/all>
using namespace std;
//using namespace atcoder;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;


int main() {
    vector<ll> P(1e6+10, -1);
    rep(i, 1e6 + 10) {
        P[i] = i;
    }
    P[0] = P[1] = -1;
    rep(p, 1e6 + 10) {
        if (P[p]==p) {
            for (ll j = p + p; j <= 1e6 + 4; j += p) {
                if(P[j]==j)P[j] = p;
            }
        }

    }
    ll N;
    cin >> N;
    ll AN = 0;
    rep(i, N) {
        ll A;
        cin >> A;

        ll k = 0;
        while (A != 1) {
            A /= P[A];
            k++;
        }
        AN = AN ^ k;
        
    }
    cout << (AN== 0 ? "black" : "white") << endl;
}
0