結果

問題 No.1665 quotient replace
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 23:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 294 ms / 3,000 ms
コード長 348 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 198,172 KB
最終ジャッジ日時 2024-05-09 07:15:10
合計ジャッジ時間 9,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
94,720 KB
testcase_01 AC 97 ms
94,536 KB
testcase_02 AC 98 ms
94,684 KB
testcase_03 AC 98 ms
94,736 KB
testcase_04 AC 99 ms
94,684 KB
testcase_05 AC 99 ms
94,464 KB
testcase_06 AC 101 ms
94,464 KB
testcase_07 AC 101 ms
94,720 KB
testcase_08 AC 102 ms
94,592 KB
testcase_09 AC 107 ms
95,872 KB
testcase_10 AC 160 ms
119,164 KB
testcase_11 AC 248 ms
160,364 KB
testcase_12 AC 115 ms
101,120 KB
testcase_13 AC 290 ms
197,828 KB
testcase_14 AC 292 ms
197,324 KB
testcase_15 AC 290 ms
198,172 KB
testcase_16 AC 292 ms
197,516 KB
testcase_17 AC 294 ms
197,704 KB
testcase_18 AC 99 ms
94,208 KB
testcase_19 AC 99 ms
94,488 KB
testcase_20 AC 99 ms
94,284 KB
testcase_21 AC 98 ms
94,632 KB
testcase_22 AC 99 ms
94,336 KB
testcase_23 AC 101 ms
94,464 KB
testcase_24 AC 99 ms
94,720 KB
testcase_25 AC 99 ms
94,416 KB
testcase_26 AC 102 ms
95,276 KB
testcase_27 AC 102 ms
95,104 KB
testcase_28 AC 108 ms
95,744 KB
testcase_29 AC 116 ms
99,484 KB
testcase_30 AC 213 ms
155,068 KB
testcase_31 AC 249 ms
161,012 KB
testcase_32 AC 244 ms
165,096 KB
testcase_33 AC 149 ms
110,872 KB
testcase_34 AC 217 ms
163,668 KB
testcase_35 AC 208 ms
156,524 KB
testcase_36 AC 213 ms
162,876 KB
testcase_37 AC 203 ms
155,728 KB
testcase_38 AC 226 ms
170,576 KB
testcase_39 AC 197 ms
140,820 KB
testcase_40 AC 193 ms
141,120 KB
testcase_41 AC 195 ms
141,284 KB
testcase_42 AC 101 ms
94,336 KB
testcase_43 AC 102 ms
94,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = 1001001
pl = []
lpf = [0] * m
L = [0] * m
for i in range(2, m):
    if not lpf[i]:
        lpf[i] = i
        L[i] = 1
        pl.append(i)
    a = lpf[i]
    for p in pl:
        if p > a or p * i >= m: break
        lpf[p*i] = p
        L[p*i] = L[i] + 1
input()
s = 0
for a in input().split(): s ^= L[int(a)]
print("white" if s else "black")
0