結果

問題 No.1665 quotient replace
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-09-04 04:07:02
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 338 ms / 3,000 ms
コード長 764 bytes
コンパイル時間 1,256 ms
コンパイル使用メモリ 160,480 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-12-16 04:19:48
合計ジャッジ時間 8,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
11,520 KB
testcase_01 AC 15 ms
11,520 KB
testcase_02 AC 15 ms
11,520 KB
testcase_03 AC 15 ms
11,520 KB
testcase_04 AC 14 ms
11,520 KB
testcase_05 AC 13 ms
11,520 KB
testcase_06 AC 16 ms
11,520 KB
testcase_07 AC 13 ms
11,648 KB
testcase_08 AC 15 ms
11,648 KB
testcase_09 AC 25 ms
11,520 KB
testcase_10 AC 115 ms
11,648 KB
testcase_11 AC 284 ms
11,520 KB
testcase_12 AC 42 ms
11,648 KB
testcase_13 AC 320 ms
11,648 KB
testcase_14 AC 338 ms
11,648 KB
testcase_15 AC 331 ms
11,520 KB
testcase_16 AC 318 ms
11,520 KB
testcase_17 AC 316 ms
11,520 KB
testcase_18 AC 15 ms
11,520 KB
testcase_19 AC 13 ms
11,520 KB
testcase_20 AC 15 ms
11,520 KB
testcase_21 AC 15 ms
11,392 KB
testcase_22 AC 15 ms
11,520 KB
testcase_23 AC 14 ms
11,520 KB
testcase_24 AC 14 ms
11,520 KB
testcase_25 AC 17 ms
11,520 KB
testcase_26 AC 16 ms
11,520 KB
testcase_27 AC 17 ms
11,520 KB
testcase_28 AC 25 ms
11,520 KB
testcase_29 AC 34 ms
11,520 KB
testcase_30 AC 203 ms
11,520 KB
testcase_31 AC 257 ms
11,520 KB
testcase_32 AC 228 ms
11,520 KB
testcase_33 AC 94 ms
11,520 KB
testcase_34 AC 183 ms
11,520 KB
testcase_35 AC 175 ms
11,520 KB
testcase_36 AC 195 ms
11,520 KB
testcase_37 AC 166 ms
11,520 KB
testcase_38 AC 220 ms
11,520 KB
testcase_39 AC 143 ms
11,520 KB
testcase_40 AC 144 ms
11,520 KB
testcase_41 AC 155 ms
11,520 KB
testcase_42 AC 15 ms
11,520 KB
testcase_43 AC 13 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.09.04 04:06:58
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n;cin >> n;
    vector<int> a(1000001);
    vector<int> spf(1000001);
    vector<int> prime;
    for (int d = 2; d <= 1000000; d++) {
        if (a[d] == 0) {
            a[d] = 1;
            spf[d] = d;
            prime.push_back(d);
        }
        for(int p : prime) {
            if (p * d > 1000000 || p > spf[d]) break;
            a[p*d] = a[d] + 1;
            spf[p*d] = p;
        }
    }
    int grundy = 0;
    for (int i = 0; i < n; i++) {
        int t;cin >> t;
        grundy ^= a[t];
    }
    if (grundy == 0) puts("black");
    else puts("white");
    return 0;
}
0