結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
72,260 KB
testcase_01 AC 68 ms
71,848 KB
testcase_02 AC 71 ms
71,584 KB
testcase_03 AC 78 ms
73,240 KB
testcase_04 AC 84 ms
75,136 KB
testcase_05 AC 71 ms
72,932 KB
testcase_06 AC 81 ms
76,020 KB
testcase_07 AC 77 ms
75,380 KB
testcase_08 AC 77 ms
75,768 KB
testcase_09 AC 83 ms
81,644 KB
testcase_10 AC 183 ms
130,928 KB
testcase_11 AC 285 ms
181,268 KB
testcase_12 AC 101 ms
94,060 KB
testcase_13 AC 400 ms
260,916 KB
testcase_14 AC 408 ms
260,988 KB
testcase_15 AC 380 ms
261,400 KB
testcase_16 AC 412 ms
261,860 KB
testcase_17 AC 419 ms
261,704 KB
testcase_18 AC 69 ms
71,836 KB
testcase_19 AC 73 ms
71,484 KB
testcase_20 AC 74 ms
71,736 KB
testcase_21 AC 70 ms
71,100 KB
testcase_22 AC 68 ms
72,568 KB
testcase_23 AC 68 ms
71,464 KB
testcase_24 AC 73 ms
71,708 KB
testcase_25 AC 77 ms
72,136 KB
testcase_26 AC 85 ms
75,392 KB
testcase_27 AC 86 ms
75,480 KB
testcase_28 AC 91 ms
82,432 KB
testcase_29 AC 96 ms
90,796 KB
testcase_30 AC 181 ms
158,872 KB
testcase_31 AC 230 ms
191,420 KB
testcase_32 AC 278 ms
180,160 KB
testcase_33 AC 172 ms
116,772 KB
testcase_34 AC 274 ms
186,984 KB
testcase_35 AC 241 ms
160,496 KB
testcase_36 AC 259 ms
184,080 KB
testcase_37 AC 232 ms
159,116 KB
testcase_38 AC 284 ms
194,484 KB
testcase_39 AC 219 ms
148,188 KB
testcase_40 AC 214 ms
148,504 KB
testcase_41 AC 216 ms
148,376 KB
testcase_42 AC 65 ms
71,728 KB
testcase_43 AC 72 ms
71,160 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