結果

問題 No.1665 quotient replace
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 23:17:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 3,000 ms
コード長 351 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 198,348 KB
最終ジャッジ日時 2024-05-09 07:06:11
合計ジャッジ時間 11,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
94,976 KB
testcase_01 AC 132 ms
94,592 KB
testcase_02 AC 129 ms
94,592 KB
testcase_03 AC 132 ms
94,336 KB
testcase_04 AC 132 ms
94,464 KB
testcase_05 AC 131 ms
94,592 KB
testcase_06 AC 134 ms
95,360 KB
testcase_07 AC 133 ms
95,104 KB
testcase_08 AC 133 ms
95,104 KB
testcase_09 AC 138 ms
96,000 KB
testcase_10 AC 204 ms
119,976 KB
testcase_11 AC 306 ms
160,512 KB
testcase_12 AC 152 ms
101,632 KB
testcase_13 AC 366 ms
197,700 KB
testcase_14 AC 373 ms
197,700 KB
testcase_15 AC 367 ms
198,084 KB
testcase_16 AC 363 ms
197,712 KB
testcase_17 AC 366 ms
198,348 KB
testcase_18 AC 133 ms
94,976 KB
testcase_19 AC 130 ms
94,592 KB
testcase_20 AC 131 ms
94,592 KB
testcase_21 AC 132 ms
94,592 KB
testcase_22 AC 131 ms
94,592 KB
testcase_23 AC 131 ms
94,720 KB
testcase_24 AC 134 ms
94,336 KB
testcase_25 AC 134 ms
94,848 KB
testcase_26 AC 135 ms
94,720 KB
testcase_27 AC 135 ms
94,848 KB
testcase_28 AC 142 ms
96,128 KB
testcase_29 AC 157 ms
99,968 KB
testcase_30 AC 247 ms
155,404 KB
testcase_31 AC 303 ms
160,260 KB
testcase_32 AC 303 ms
160,640 KB
testcase_33 AC 190 ms
112,320 KB
testcase_34 AC 268 ms
164,352 KB
testcase_35 AC 254 ms
157,312 KB
testcase_36 AC 267 ms
163,460 KB
testcase_37 AC 254 ms
155,780 KB
testcase_38 AC 279 ms
170,888 KB
testcase_39 AC 234 ms
141,820 KB
testcase_40 AC 238 ms
141,564 KB
testcase_41 AC 236 ms
141,572 KB
testcase_42 AC 134 ms
94,720 KB
testcase_43 AC 131 ms
94,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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