結果

問題 No.1665 quotient replace
ユーザー minimumminimum
提出日時 2021-09-04 13:35:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 568 ms / 3,000 ms
コード長 414 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 262,312 KB
最終ジャッジ日時 2024-12-17 22:52:19
合計ジャッジ時間 11,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
72,044 KB
testcase_01 AC 72 ms
71,768 KB
testcase_02 AC 73 ms
71,652 KB
testcase_03 AC 77 ms
72,836 KB
testcase_04 AC 78 ms
74,564 KB
testcase_05 AC 74 ms
71,812 KB
testcase_06 AC 80 ms
75,176 KB
testcase_07 AC 79 ms
74,636 KB
testcase_08 AC 78 ms
74,752 KB
testcase_09 AC 88 ms
81,356 KB
testcase_10 AC 213 ms
130,928 KB
testcase_11 AC 351 ms
181,208 KB
testcase_12 AC 109 ms
92,896 KB
testcase_13 AC 568 ms
261,116 KB
testcase_14 AC 487 ms
261,328 KB
testcase_15 AC 459 ms
262,312 KB
testcase_16 AC 475 ms
261,064 KB
testcase_17 AC 475 ms
261,356 KB
testcase_18 AC 75 ms
71,172 KB
testcase_19 AC 75 ms
71,156 KB
testcase_20 AC 74 ms
71,264 KB
testcase_21 AC 76 ms
71,588 KB
testcase_22 AC 73 ms
71,768 KB
testcase_23 AC 72 ms
72,076 KB
testcase_24 AC 73 ms
71,296 KB
testcase_25 AC 72 ms
71,144 KB
testcase_26 AC 77 ms
74,200 KB
testcase_27 AC 80 ms
75,524 KB
testcase_28 AC 87 ms
81,316 KB
testcase_29 AC 96 ms
90,376 KB
testcase_30 AC 202 ms
159,136 KB
testcase_31 AC 253 ms
191,496 KB
testcase_32 AC 342 ms
180,032 KB
testcase_33 AC 196 ms
116,932 KB
testcase_34 AC 317 ms
186,364 KB
testcase_35 AC 276 ms
160,476 KB
testcase_36 AC 297 ms
170,400 KB
testcase_37 AC 276 ms
159,096 KB
testcase_38 AC 338 ms
194,616 KB
testcase_39 AC 258 ms
148,152 KB
testcase_40 AC 254 ms
148,160 KB
testcase_41 AC 257 ms
148,324 KB
testcase_42 AC 75 ms
72,544 KB
testcase_43 AC 73 ms
71,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# 素数列挙
mx = 10 ** 6
div = [0] * (mx + 1)
div[1] = 1
for i in range(2, mx + 1):
    if div[i]:
        continue
    for j in range(i, mx + 1, i):
        div[j] = i

#素因数分解
cnt = [0] * N
for i in range(N):
    while A[i] > 1:
        A[i] //= div[A[i]]
        cnt[i] += 1

# XOR
x = 0
for c in cnt:
    x ^= c
print(["black", "white"][x > 0])
0