結果

問題 No.1665 quotient replace
ユーザー ktr216ktr216
提出日時 2021-09-03 21:49:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 554 ms / 3,000 ms
コード長 605 bytes
コンパイル時間 1,535 ms
コンパイル使用メモリ 168,360 KB
実行使用メモリ 7,300 KB
最終ジャッジ日時 2024-05-09 03:13:31
合計ジャッジ時間 17,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
7,060 KB
testcase_01 AC 196 ms
7,124 KB
testcase_02 AC 198 ms
7,256 KB
testcase_03 AC 202 ms
7,124 KB
testcase_04 AC 204 ms
7,148 KB
testcase_05 AC 197 ms
7,080 KB
testcase_06 AC 203 ms
7,264 KB
testcase_07 AC 205 ms
7,236 KB
testcase_08 AC 211 ms
7,168 KB
testcase_09 AC 216 ms
7,164 KB
testcase_10 AC 317 ms
7,168 KB
testcase_11 AC 444 ms
7,124 KB
testcase_12 AC 233 ms
7,168 KB
testcase_13 AC 554 ms
7,084 KB
testcase_14 AC 511 ms
7,060 KB
testcase_15 AC 508 ms
7,168 KB
testcase_16 AC 519 ms
7,296 KB
testcase_17 AC 511 ms
7,084 KB
testcase_18 AC 202 ms
7,168 KB
testcase_19 AC 202 ms
7,192 KB
testcase_20 AC 203 ms
7,300 KB
testcase_21 AC 199 ms
7,092 KB
testcase_22 AC 215 ms
7,168 KB
testcase_23 AC 202 ms
7,120 KB
testcase_24 AC 213 ms
7,168 KB
testcase_25 AC 213 ms
7,168 KB
testcase_26 AC 210 ms
7,160 KB
testcase_27 AC 210 ms
7,156 KB
testcase_28 AC 222 ms
7,148 KB
testcase_29 AC 237 ms
7,088 KB
testcase_30 AC 382 ms
7,084 KB
testcase_31 AC 457 ms
7,168 KB
testcase_32 AC 455 ms
7,092 KB
testcase_33 AC 310 ms
7,092 KB
testcase_34 AC 411 ms
7,168 KB
testcase_35 AC 389 ms
7,168 KB
testcase_36 AC 401 ms
7,168 KB
testcase_37 AC 383 ms
7,296 KB
testcase_38 AC 412 ms
7,268 KB
testcase_39 AC 357 ms
7,168 KB
testcase_40 AC 344 ms
7,152 KB
testcase_41 AC 355 ms
7,156 KB
testcase_42 AC 213 ms
7,168 KB
testcase_43 AC 206 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, l, r) for (int i = (l); i < (r); i++)
using namespace std;

typedef long long ll;

int main() {
    vector<int> B(1000001, 0);
    rep(i, 2, 1000001) {
        for (int j = 2; j * j <= i; j++) {
            if (i % j == 0) {
                B[i] = B[i / j] + 1;
                break;
            }
        }
        if (B[i] == 0) B[i] = 1;
    }
    int N, A, X = 0;
    cin >> N;
    rep(i, 0, N) {
        cin >> A;
        X ^= B[A];
        //cout << X << " " << B[A] << endl;
    }
    if (X == 0) cout << "black" << endl;
    else cout << "white" << endl;
}
0