結果

問題 No.1665 quotient replace
ユーザー H3PO4H3PO4
提出日時 2021-09-03 21:43:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 3,000 ms
コード長 334 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 166,436 KB
最終ジャッジ日時 2024-12-15 11:31:05
合計ジャッジ時間 7,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
72,460 KB
testcase_01 AC 67 ms
73,352 KB
testcase_02 AC 70 ms
72,748 KB
testcase_03 AC 70 ms
72,956 KB
testcase_04 AC 71 ms
72,836 KB
testcase_05 AC 72 ms
73,380 KB
testcase_06 AC 75 ms
74,668 KB
testcase_07 AC 74 ms
73,288 KB
testcase_08 AC 77 ms
73,772 KB
testcase_09 AC 76 ms
78,088 KB
testcase_10 AC 135 ms
106,176 KB
testcase_11 AC 193 ms
151,708 KB
testcase_12 AC 84 ms
86,852 KB
testcase_13 AC 221 ms
165,756 KB
testcase_14 AC 209 ms
166,436 KB
testcase_15 AC 211 ms
165,804 KB
testcase_16 AC 218 ms
165,788 KB
testcase_17 AC 222 ms
166,056 KB
testcase_18 AC 73 ms
73,104 KB
testcase_19 AC 70 ms
73,456 KB
testcase_20 AC 68 ms
72,544 KB
testcase_21 AC 66 ms
72,240 KB
testcase_22 AC 73 ms
73,100 KB
testcase_23 AC 70 ms
73,448 KB
testcase_24 AC 66 ms
72,788 KB
testcase_25 AC 71 ms
73,580 KB
testcase_26 AC 71 ms
73,496 KB
testcase_27 AC 68 ms
74,120 KB
testcase_28 AC 75 ms
79,520 KB
testcase_29 AC 81 ms
83,628 KB
testcase_30 AC 145 ms
119,304 KB
testcase_31 AC 191 ms
151,268 KB
testcase_32 AC 192 ms
160,712 KB
testcase_33 AC 123 ms
116,500 KB
testcase_34 AC 145 ms
125,600 KB
testcase_35 AC 145 ms
120,368 KB
testcase_36 AC 149 ms
126,340 KB
testcase_37 AC 151 ms
119,288 KB
testcase_38 AC 196 ms
148,820 KB
testcase_39 AC 139 ms
112,948 KB
testcase_40 AC 150 ms
112,812 KB
testcase_41 AC 147 ms
112,960 KB
testcase_42 AC 68 ms
73,352 KB
testcase_43 AC 70 ms
72,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = map(int, input().split())
MAX = 10 ** 6
table = [0] * (MAX + 1)
for i in range(2, MAX + 1):
    if not table[i]:
        j = i
        while j <= MAX:
            for k in range(j, MAX + 1, j):
                table[k] += 1
            j *= i

x = 0
for a in A:
    x ^= table[a]
print('white' if x else 'black')
0