結果

問題 No.1665 quotient replace
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-09 21:25:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 2,675 ms
コンパイル使用メモリ 201,700 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-01 21:53:36
合計ジャッジ時間 9,217 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
7,040 KB
testcase_01 AC 29 ms
7,168 KB
testcase_02 AC 29 ms
7,168 KB
testcase_03 AC 29 ms
7,148 KB
testcase_04 AC 30 ms
7,040 KB
testcase_05 AC 29 ms
7,168 KB
testcase_06 AC 32 ms
7,168 KB
testcase_07 AC 29 ms
7,152 KB
testcase_08 AC 30 ms
7,168 KB
testcase_09 AC 34 ms
7,200 KB
testcase_10 AC 82 ms
8,448 KB
testcase_11 AC 104 ms
10,148 KB
testcase_12 AC 35 ms
7,424 KB
testcase_13 AC 122 ms
10,880 KB
testcase_14 AC 121 ms
11,008 KB
testcase_15 AC 202 ms
11,008 KB
testcase_16 AC 124 ms
11,008 KB
testcase_17 AC 151 ms
10,880 KB
testcase_18 AC 28 ms
7,168 KB
testcase_19 AC 27 ms
7,040 KB
testcase_20 AC 27 ms
7,140 KB
testcase_21 AC 28 ms
7,292 KB
testcase_22 AC 28 ms
7,168 KB
testcase_23 AC 29 ms
7,124 KB
testcase_24 AC 28 ms
7,168 KB
testcase_25 AC 28 ms
7,168 KB
testcase_26 AC 28 ms
7,140 KB
testcase_27 AC 29 ms
7,168 KB
testcase_28 AC 31 ms
7,296 KB
testcase_29 AC 34 ms
7,424 KB
testcase_30 AC 76 ms
9,064 KB
testcase_31 AC 104 ms
10,164 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 29 ms
7,168 KB
testcase_43 AC 28 ms
7,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    const int M = 1e6;
    vector<int> fac_cnt(M + 1);
    for (int i = 2; i <= M; i++) {
        for (int j = i; j <= M; j += i) {
            fac_cnt[j]++;
        }
    }
    int n;
    cin >> n;
    int grundy = 0;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        grundy ^= fac_cnt[a[i]];
    }
    cout << (grundy ? "white" : "black") << endl;
}
0