結果

問題 No.1665 quotient replace
ユーザー ktr216ktr216
提出日時 2021-09-03 21:49:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 510 ms / 3,000 ms
コード長 605 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 167,388 KB
実行使用メモリ 7,200 KB
最終ジャッジ日時 2024-12-15 12:16:10
合計ジャッジ時間 16,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
7,116 KB
testcase_01 AC 198 ms
7,152 KB
testcase_02 AC 200 ms
7,160 KB
testcase_03 AC 202 ms
7,152 KB
testcase_04 AC 203 ms
7,164 KB
testcase_05 AC 203 ms
7,168 KB
testcase_06 AC 202 ms
7,060 KB
testcase_07 AC 198 ms
7,112 KB
testcase_08 AC 198 ms
7,076 KB
testcase_09 AC 206 ms
7,100 KB
testcase_10 AC 302 ms
7,064 KB
testcase_11 AC 434 ms
7,168 KB
testcase_12 AC 231 ms
7,100 KB
testcase_13 AC 510 ms
7,168 KB
testcase_14 AC 497 ms
7,200 KB
testcase_15 AC 506 ms
7,128 KB
testcase_16 AC 505 ms
7,152 KB
testcase_17 AC 508 ms
7,064 KB
testcase_18 AC 197 ms
7,120 KB
testcase_19 AC 205 ms
7,160 KB
testcase_20 AC 198 ms
7,084 KB
testcase_21 AC 196 ms
7,120 KB
testcase_22 AC 196 ms
7,084 KB
testcase_23 AC 198 ms
7,060 KB
testcase_24 AC 200 ms
7,168 KB
testcase_25 AC 198 ms
7,076 KB
testcase_26 AC 196 ms
7,104 KB
testcase_27 AC 199 ms
7,168 KB
testcase_28 AC 218 ms
7,160 KB
testcase_29 AC 229 ms
7,164 KB
testcase_30 AC 355 ms
7,088 KB
testcase_31 AC 441 ms
7,148 KB
testcase_32 AC 433 ms
7,140 KB
testcase_33 AC 286 ms
7,124 KB
testcase_34 AC 381 ms
7,152 KB
testcase_35 AC 365 ms
7,144 KB
testcase_36 AC 365 ms
7,180 KB
testcase_37 AC 351 ms
7,168 KB
testcase_38 AC 396 ms
7,104 KB
testcase_39 AC 334 ms
7,124 KB
testcase_40 AC 328 ms
7,084 KB
testcase_41 AC 332 ms
7,168 KB
testcase_42 AC 198 ms
7,148 KB
testcase_43 AC 198 ms
6,996 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