結果

問題 No.1665 quotient replace
ユーザー asumo0729asumo0729
提出日時 2021-09-06 10:03:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 539 ms / 3,000 ms
コード長 677 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 247,044 KB
最終ジャッジ日時 2024-12-22 19:15:54
合計ジャッジ時間 15,507 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
71,424 KB
testcase_01 AC 78 ms
71,296 KB
testcase_02 AC 79 ms
71,296 KB
testcase_03 AC 83 ms
73,344 KB
testcase_04 AC 84 ms
74,112 KB
testcase_05 AC 76 ms
71,808 KB
testcase_06 AC 84 ms
75,136 KB
testcase_07 AC 82 ms
73,600 KB
testcase_08 AC 86 ms
74,240 KB
testcase_09 AC 91 ms
79,744 KB
testcase_10 AC 216 ms
128,424 KB
testcase_11 AC 350 ms
173,632 KB
testcase_12 AC 112 ms
91,520 KB
testcase_13 AC 539 ms
247,044 KB
testcase_14 AC 477 ms
246,796 KB
testcase_15 AC 458 ms
246,936 KB
testcase_16 AC 448 ms
247,008 KB
testcase_17 AC 449 ms
246,792 KB
testcase_18 AC 80 ms
71,296 KB
testcase_19 AC 79 ms
71,552 KB
testcase_20 AC 77 ms
71,680 KB
testcase_21 AC 78 ms
71,552 KB
testcase_22 AC 82 ms
71,424 KB
testcase_23 AC 76 ms
71,296 KB
testcase_24 AC 80 ms
71,296 KB
testcase_25 AC 78 ms
71,424 KB
testcase_26 AC 81 ms
73,728 KB
testcase_27 AC 86 ms
74,624 KB
testcase_28 AC 95 ms
80,640 KB
testcase_29 AC 103 ms
87,808 KB
testcase_30 AC 197 ms
156,028 KB
testcase_31 AC 260 ms
182,736 KB
testcase_32 AC 349 ms
173,688 KB
testcase_33 AC 194 ms
116,132 KB
testcase_34 AC 301 ms
183,124 KB
testcase_35 AC 267 ms
157,032 KB
testcase_36 AC 262 ms
166,412 KB
testcase_37 AC 251 ms
155,776 KB
testcase_38 AC 318 ms
196,020 KB
testcase_39 AC 237 ms
144,104 KB
testcase_40 AC 236 ms
144,064 KB
testcase_41 AC 238 ms
144,112 KB
testcase_42 AC 82 ms
71,808 KB
testcase_43 AC 79 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
eps = 1e-9
sortkey = itemgetter(0)

N = ip()
A = lp()

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

Nim = 0
for i in range(N):
    res = 0
    while A[i] != 1:
        A[i] = A[i] // spf[A[i]]
        res += 1
    Nim ^= res

ans = "white" if Nim else "black"
print(ans)
0