結果

問題 No.1665 quotient replace
ユーザー lloyzlloyz
提出日時 2021-11-29 21:33:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 3,000 ms
コード長 438 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 262,244 KB
最終ジャッジ日時 2024-07-02 13:34:40
合計ジャッジ時間 9,383 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
70,784 KB
testcase_01 AC 71 ms
71,168 KB
testcase_02 AC 69 ms
71,424 KB
testcase_03 AC 74 ms
72,704 KB
testcase_04 AC 73 ms
73,216 KB
testcase_05 AC 72 ms
71,168 KB
testcase_06 AC 79 ms
75,392 KB
testcase_07 AC 77 ms
74,112 KB
testcase_08 AC 75 ms
75,008 KB
testcase_09 AC 83 ms
80,384 KB
testcase_10 AC 188 ms
130,816 KB
testcase_11 AC 301 ms
181,072 KB
testcase_12 AC 100 ms
93,044 KB
testcase_13 AC 387 ms
261,508 KB
testcase_14 AC 396 ms
261,304 KB
testcase_15 AC 380 ms
261,284 KB
testcase_16 AC 391 ms
262,144 KB
testcase_17 AC 409 ms
262,244 KB
testcase_18 AC 69 ms
71,596 KB
testcase_19 AC 70 ms
72,332 KB
testcase_20 AC 70 ms
71,456 KB
testcase_21 AC 71 ms
72,520 KB
testcase_22 AC 68 ms
71,788 KB
testcase_23 AC 69 ms
72,192 KB
testcase_24 AC 71 ms
71,580 KB
testcase_25 AC 74 ms
72,124 KB
testcase_26 AC 71 ms
74,164 KB
testcase_27 AC 70 ms
76,676 KB
testcase_28 AC 77 ms
81,120 KB
testcase_29 AC 88 ms
89,088 KB
testcase_30 AC 183 ms
159,168 KB
testcase_31 AC 227 ms
191,396 KB
testcase_32 AC 288 ms
180,232 KB
testcase_33 AC 168 ms
116,628 KB
testcase_34 AC 263 ms
186,848 KB
testcase_35 AC 229 ms
160,592 KB
testcase_36 AC 269 ms
183,984 KB
testcase_37 AC 239 ms
159,020 KB
testcase_38 AC 292 ms
194,368 KB
testcase_39 AC 209 ms
147,968 KB
testcase_40 AC 202 ms
147,988 KB
testcase_41 AC 212 ms
148,128 KB
testcase_42 AC 70 ms
72,332 KB
testcase_43 AC 73 ms
70,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

spl = [0 for _ in range(10**6 + 1)]
spl[1] = 1
for i in range(2, 10**6 + 1):
    if spl[i]:
        continue
    for j in range(i, 10**6 + 1, i):
        spl[j] = i

P = [0 for _ in range(n)]
for i in range(n):
    while A[i] > 1:
        A[i] //= spl[A[i]]
        P[i] += 1

state = 0
for i in range(n):
    state ^= P[i]

if state == 0:
    print("black")
else:
    print("white")
0