結果

問題 No.1665 quotient replace
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-09-04 04:07:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 394 ms / 3,000 ms
コード長 764 bytes
コンパイル時間 1,642 ms
コンパイル使用メモリ 160,760 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-05-09 14:26:48
合計ジャッジ時間 10,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
11,676 KB
testcase_01 AC 18 ms
11,536 KB
testcase_02 AC 18 ms
11,520 KB
testcase_03 AC 17 ms
11,520 KB
testcase_04 AC 19 ms
11,776 KB
testcase_05 AC 18 ms
11,648 KB
testcase_06 AC 20 ms
11,520 KB
testcase_07 AC 18 ms
11,520 KB
testcase_08 AC 19 ms
11,628 KB
testcase_09 AC 30 ms
11,692 KB
testcase_10 AC 144 ms
11,520 KB
testcase_11 AC 300 ms
11,692 KB
testcase_12 AC 46 ms
11,664 KB
testcase_13 AC 394 ms
11,520 KB
testcase_14 AC 387 ms
11,520 KB
testcase_15 AC 388 ms
11,640 KB
testcase_16 AC 388 ms
11,604 KB
testcase_17 AC 390 ms
11,520 KB
testcase_18 AC 17 ms
11,648 KB
testcase_19 AC 16 ms
11,484 KB
testcase_20 AC 17 ms
11,644 KB
testcase_21 AC 20 ms
11,632 KB
testcase_22 AC 18 ms
11,532 KB
testcase_23 AC 17 ms
11,520 KB
testcase_24 AC 17 ms
11,520 KB
testcase_25 AC 17 ms
11,648 KB
testcase_26 AC 17 ms
11,520 KB
testcase_27 AC 20 ms
11,648 KB
testcase_28 AC 30 ms
11,624 KB
testcase_29 AC 41 ms
11,492 KB
testcase_30 AC 203 ms
11,520 KB
testcase_31 AC 296 ms
11,536 KB
testcase_32 AC 284 ms
11,616 KB
testcase_33 AC 116 ms
11,648 KB
testcase_34 AC 233 ms
11,520 KB
testcase_35 AC 215 ms
11,532 KB
testcase_36 AC 231 ms
11,520 KB
testcase_37 AC 207 ms
11,648 KB
testcase_38 AC 246 ms
11,648 KB
testcase_39 AC 178 ms
11,552 KB
testcase_40 AC 176 ms
11,520 KB
testcase_41 AC 176 ms
11,520 KB
testcase_42 AC 18 ms
11,520 KB
testcase_43 AC 18 ms
11,588 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