結果

問題 No.1665 quotient replace
ユーザー nok0nok0
提出日時 2021-08-11 20:14:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 505 ms / 3,000 ms
コード長 449 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 264,180 KB
最終ジャッジ日時 2024-12-15 08:48:50
合計ジャッジ時間 11,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
76,760 KB
testcase_01 AC 88 ms
75,720 KB
testcase_02 AC 90 ms
77,100 KB
testcase_03 AC 95 ms
77,256 KB
testcase_04 AC 96 ms
78,600 KB
testcase_05 AC 91 ms
77,380 KB
testcase_06 AC 96 ms
79,984 KB
testcase_07 AC 94 ms
78,960 KB
testcase_08 AC 98 ms
78,692 KB
testcase_09 AC 108 ms
86,308 KB
testcase_10 AC 244 ms
135,776 KB
testcase_11 AC 384 ms
187,324 KB
testcase_12 AC 127 ms
97,236 KB
testcase_13 AC 470 ms
264,032 KB
testcase_14 AC 489 ms
263,984 KB
testcase_15 AC 478 ms
264,180 KB
testcase_16 AC 471 ms
263,988 KB
testcase_17 AC 505 ms
264,164 KB
testcase_18 AC 88 ms
76,536 KB
testcase_19 AC 90 ms
77,760 KB
testcase_20 AC 88 ms
76,204 KB
testcase_21 AC 89 ms
76,596 KB
testcase_22 AC 92 ms
77,204 KB
testcase_23 AC 87 ms
76,416 KB
testcase_24 AC 88 ms
76,988 KB
testcase_25 AC 89 ms
76,672 KB
testcase_26 AC 95 ms
79,240 KB
testcase_27 AC 95 ms
79,068 KB
testcase_28 AC 101 ms
86,432 KB
testcase_29 AC 108 ms
93,972 KB
testcase_30 AC 206 ms
167,144 KB
testcase_31 AC 266 ms
200,444 KB
testcase_32 AC 363 ms
187,772 KB
testcase_33 AC 210 ms
122,596 KB
testcase_34 AC 332 ms
160,832 KB
testcase_35 AC 295 ms
168,236 KB
testcase_36 AC 308 ms
177,748 KB
testcase_37 AC 295 ms
167,608 KB
testcase_38 AC 343 ms
167,228 KB
testcase_39 AC 255 ms
151,920 KB
testcase_40 AC 260 ms
151,716 KB
testcase_41 AC 260 ms
151,448 KB
testcase_42 AC 88 ms
75,856 KB
testcase_43 AC 93 ms
77,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

spf = [0 for i in range(1000001)]
pr = []
for i in range(2, 1000001):
    if spf[i] == 0:
        spf[i] = i
        pr.append(i)
    j = 0
    while j < len(pr) and pr[j] <= spf[i] and i * pr[j] <= 1000000:
        spf[i * pr[j]] = pr[j]
        j += 1

n = int(input())
a = list(map(int, input().split()))
fold = 0
for v in a:
    cnt = 0
    while v > 1:
        v //= spf[v]
        cnt += 1
    fold ^= cnt

print("white" if fold else "black")
0