結果

問題 No.1665 quotient replace
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 23:17:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 3,000 ms
コード長 351 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 198,252 KB
最終ジャッジ日時 2024-12-15 17:47:56
合計ジャッジ時間 9,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
94,584 KB
testcase_01 AC 92 ms
94,800 KB
testcase_02 AC 91 ms
94,800 KB
testcase_03 AC 92 ms
94,376 KB
testcase_04 AC 93 ms
94,792 KB
testcase_05 AC 93 ms
94,568 KB
testcase_06 AC 97 ms
94,464 KB
testcase_07 AC 95 ms
94,780 KB
testcase_08 AC 94 ms
95,136 KB
testcase_09 AC 98 ms
95,908 KB
testcase_10 AC 146 ms
120,108 KB
testcase_11 AC 219 ms
160,136 KB
testcase_12 AC 105 ms
101,808 KB
testcase_13 AC 270 ms
197,576 KB
testcase_14 AC 252 ms
197,704 KB
testcase_15 AC 253 ms
198,252 KB
testcase_16 AC 252 ms
197,848 KB
testcase_17 AC 252 ms
197,916 KB
testcase_18 AC 92 ms
94,488 KB
testcase_19 AC 93 ms
94,608 KB
testcase_20 AC 92 ms
94,428 KB
testcase_21 AC 92 ms
94,364 KB
testcase_22 AC 94 ms
94,496 KB
testcase_23 AC 94 ms
94,520 KB
testcase_24 AC 93 ms
94,856 KB
testcase_25 AC 95 ms
94,136 KB
testcase_26 AC 96 ms
94,780 KB
testcase_27 AC 95 ms
94,668 KB
testcase_28 AC 98 ms
96,356 KB
testcase_29 AC 102 ms
99,792 KB
testcase_30 AC 183 ms
155,388 KB
testcase_31 AC 217 ms
160,260 KB
testcase_32 AC 212 ms
160,272 KB
testcase_33 AC 139 ms
112,440 KB
testcase_34 AC 191 ms
164,736 KB
testcase_35 AC 190 ms
156,932 KB
testcase_36 AC 193 ms
162,796 KB
testcase_37 AC 187 ms
155,472 KB
testcase_38 AC 199 ms
170,244 KB
testcase_39 AC 169 ms
141,440 KB
testcase_40 AC 171 ms
141,568 KB
testcase_41 AC 173 ms
141,180 KB
testcase_42 AC 95 ms
94,516 KB
testcase_43 AC 93 ms
94,248 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