結果

問題 No.1665 quotient replace
ユーザー rogi52rogi52
提出日時 2022-10-12 22:44:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 110 ms / 3,000 ms
コード長 576 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 202,340 KB
実行使用メモリ 11,104 KB
最終ジャッジ日時 2024-06-26 11:31:07
合計ジャッジ時間 5,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
7,168 KB
testcase_01 AC 9 ms
7,168 KB
testcase_02 AC 8 ms
7,216 KB
testcase_03 AC 9 ms
7,168 KB
testcase_04 AC 10 ms
7,168 KB
testcase_05 AC 9 ms
7,168 KB
testcase_06 AC 9 ms
7,164 KB
testcase_07 AC 9 ms
7,168 KB
testcase_08 AC 10 ms
7,296 KB
testcase_09 AC 12 ms
7,344 KB
testcase_10 AC 43 ms
8,400 KB
testcase_11 AC 86 ms
10,128 KB
testcase_12 AC 17 ms
7,424 KB
testcase_13 AC 110 ms
11,104 KB
testcase_14 AC 110 ms
10,988 KB
testcase_15 AC 109 ms
11,008 KB
testcase_16 AC 109 ms
10,868 KB
testcase_17 AC 108 ms
10,868 KB
testcase_18 AC 9 ms
7,012 KB
testcase_19 AC 9 ms
7,084 KB
testcase_20 AC 9 ms
7,148 KB
testcase_21 AC 9 ms
7,040 KB
testcase_22 AC 9 ms
7,168 KB
testcase_23 AC 9 ms
7,168 KB
testcase_24 AC 9 ms
7,168 KB
testcase_25 AC 9 ms
7,108 KB
testcase_26 AC 9 ms
7,040 KB
testcase_27 AC 10 ms
7,168 KB
testcase_28 AC 13 ms
7,092 KB
testcase_29 AC 16 ms
7,424 KB
testcase_30 AC 61 ms
9,216 KB
testcase_31 AC 88 ms
10,188 KB
testcase_32 AC 82 ms
9,924 KB
testcase_33 AC 36 ms
8,064 KB
testcase_34 AC 69 ms
9,380 KB
testcase_35 AC 62 ms
9,188 KB
testcase_36 AC 65 ms
9,328 KB
testcase_37 AC 60 ms
9,088 KB
testcase_38 AC 70 ms
9,564 KB
testcase_39 AC 52 ms
8,796 KB
testcase_40 AC 52 ms
8,796 KB
testcase_41 AC 53 ms
8,848 KB
testcase_42 AC 9 ms
7,168 KB
testcase_43 AC 8 ms
7,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<int> A(N);
    rep(i,N) cin >> A[i];

    int MAX_A = 1e6;
    vector<int> pf_cnt(MAX_A + 1, 1);
    pf_cnt[1] = 0;
    for(int i = 2; i * i <= MAX_A; i++) if(pf_cnt[i] == 1)
        for(int j = 2; i * j <= MAX_A; j++) pf_cnt[i * j] = pf_cnt[i] + pf_cnt[j];
    
    int XOR = 0;
    rep(i,N) XOR ^= pf_cnt[A[i]];
    cout << (XOR == 0 ? "black" : "white") << endl;
}
0