結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 20:54:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 516 ms / 3,000 ms
コード長 400 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 261,428 KB
最終ジャッジ日時 2024-05-09 00:39:31
合計ジャッジ時間 10,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
71,168 KB
testcase_01 AC 76 ms
70,912 KB
testcase_02 AC 83 ms
71,040 KB
testcase_03 AC 87 ms
72,960 KB
testcase_04 AC 83 ms
73,472 KB
testcase_05 AC 78 ms
71,680 KB
testcase_06 AC 94 ms
75,776 KB
testcase_07 AC 85 ms
74,112 KB
testcase_08 AC 83 ms
75,136 KB
testcase_09 AC 95 ms
80,768 KB
testcase_10 AC 225 ms
130,976 KB
testcase_11 AC 360 ms
181,264 KB
testcase_12 AC 115 ms
93,312 KB
testcase_13 AC 516 ms
261,192 KB
testcase_14 AC 507 ms
261,164 KB
testcase_15 AC 485 ms
261,320 KB
testcase_16 AC 502 ms
261,188 KB
testcase_17 AC 506 ms
261,428 KB
testcase_18 AC 79 ms
71,168 KB
testcase_19 AC 79 ms
71,424 KB
testcase_20 AC 82 ms
71,168 KB
testcase_21 AC 79 ms
71,168 KB
testcase_22 AC 81 ms
71,296 KB
testcase_23 AC 78 ms
71,168 KB
testcase_24 AC 79 ms
71,168 KB
testcase_25 AC 85 ms
71,040 KB
testcase_26 AC 85 ms
74,368 KB
testcase_27 AC 85 ms
75,464 KB
testcase_28 AC 92 ms
81,152 KB
testcase_29 AC 103 ms
89,344 KB
testcase_30 AC 204 ms
159,120 KB
testcase_31 AC 263 ms
191,152 KB
testcase_32 AC 349 ms
180,280 KB
testcase_33 AC 202 ms
116,824 KB
testcase_34 AC 318 ms
186,888 KB
testcase_35 AC 293 ms
160,392 KB
testcase_36 AC 315 ms
183,856 KB
testcase_37 AC 282 ms
159,084 KB
testcase_38 AC 334 ms
194,448 KB
testcase_39 AC 255 ms
148,036 KB
testcase_40 AC 257 ms
148,184 KB
testcase_41 AC 260 ms
148,316 KB
testcase_42 AC 81 ms
71,296 KB
testcase_43 AC 79 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

spl = [0 for _ in range(1000001)]
spl[1] = 1
for i in range(2, 1000001):
  if spl[i] : continue;
  for j in range(i, 1000001, i):
    spl[j] = i

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

nimber = 0
for i in range(n):
  nimber ^= grundy[i]
print("white" if nimber else "black")
0