結果

問題 No.1665 quotient replace
ユーザー んんんんんん
提出日時 2022-12-25 18:19:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 392 ms / 3,000 ms
コード長 708 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 202,508 KB
実行使用メモリ 11,200 KB
最終ジャッジ日時 2024-11-19 08:05:05
合計ジャッジ時間 9,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
7,060 KB
testcase_01 AC 9 ms
7,064 KB
testcase_02 AC 9 ms
7,184 KB
testcase_03 AC 9 ms
7,064 KB
testcase_04 AC 9 ms
7,172 KB
testcase_05 AC 9 ms
7,156 KB
testcase_06 AC 12 ms
7,096 KB
testcase_07 AC 10 ms
7,232 KB
testcase_08 AC 11 ms
7,164 KB
testcase_09 AC 21 ms
7,360 KB
testcase_10 AC 137 ms
8,396 KB
testcase_11 AC 297 ms
10,044 KB
testcase_12 AC 40 ms
7,484 KB
testcase_13 AC 389 ms
10,972 KB
testcase_14 AC 391 ms
11,040 KB
testcase_15 AC 390 ms
11,200 KB
testcase_16 AC 389 ms
11,016 KB
testcase_17 AC 392 ms
10,972 KB
testcase_18 AC 9 ms
7,160 KB
testcase_19 AC 10 ms
7,116 KB
testcase_20 AC 9 ms
7,060 KB
testcase_21 AC 10 ms
7,084 KB
testcase_22 AC 9 ms
7,084 KB
testcase_23 AC 9 ms
7,152 KB
testcase_24 AC 9 ms
7,180 KB
testcase_25 AC 9 ms
7,188 KB
testcase_26 AC 10 ms
7,128 KB
testcase_27 AC 12 ms
7,244 KB
testcase_28 AC 19 ms
7,304 KB
testcase_29 AC 30 ms
7,368 KB
testcase_30 AC 168 ms
9,108 KB
testcase_31 AC 251 ms
10,196 KB
testcase_32 AC 283 ms
9,932 KB
testcase_33 AC 113 ms
8,248 KB
testcase_34 AC 230 ms
9,488 KB
testcase_35 AC 212 ms
9,160 KB
testcase_36 AC 223 ms
9,284 KB
testcase_37 AC 206 ms
9,208 KB
testcase_38 AC 241 ms
9,520 KB
testcase_39 AC 170 ms
8,776 KB
testcase_40 AC 171 ms
8,792 KB
testcase_41 AC 171 ms
8,868 KB
testcase_42 AC 9 ms
7,160 KB
testcase_43 AC 9 ms
7,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int MAX = 1e6;

int main() {
    int N;
    cin >> N;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    vector<int> spf(MAX+1);
    for (int i = 0; i <= MAX; i++) spf[i] = i;
    for (int i = 2; i*i <= MAX; i++) {
        if (spf[i] == i) {
            for (int j = 2*i; j <= MAX; j += i) {
                if (spf[j] == j) spf[j] = i;
            }
        }
    }

    int n = 0;
    for (int i = 0; i < N; i++) {
        int a = A[i];
        int cnt = 0;
        while (a != 1) {
            a /= spf[a];
            cnt++;
        }
        n ^= cnt;
    }

    if (n) cout << "white" << endl;
    else cout << "black" << endl;
}
0