結果

問題 No.1665 quotient replace
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 23:13:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 3,000 ms
コード長 498 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 188,224 KB
最終ジャッジ日時 2024-05-09 06:55:05
合計ジャッジ時間 8,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
94,776 KB
testcase_01 AC 101 ms
94,500 KB
testcase_02 AC 105 ms
94,412 KB
testcase_03 AC 107 ms
94,352 KB
testcase_04 AC 103 ms
94,708 KB
testcase_05 AC 104 ms
94,948 KB
testcase_06 AC 105 ms
94,896 KB
testcase_07 AC 110 ms
94,820 KB
testcase_08 AC 107 ms
94,868 KB
testcase_09 AC 109 ms
96,400 KB
testcase_10 AC 159 ms
122,340 KB
testcase_11 AC 223 ms
160,324 KB
testcase_12 AC 116 ms
102,136 KB
testcase_13 AC 245 ms
187,696 KB
testcase_14 AC 243 ms
188,224 KB
testcase_15 AC 246 ms
188,048 KB
testcase_16 AC 238 ms
188,064 KB
testcase_17 AC 238 ms
188,180 KB
testcase_18 AC 101 ms
94,492 KB
testcase_19 AC 101 ms
94,564 KB
testcase_20 AC 104 ms
94,532 KB
testcase_21 AC 102 ms
94,556 KB
testcase_22 AC 103 ms
94,468 KB
testcase_23 AC 102 ms
94,476 KB
testcase_24 AC 102 ms
94,748 KB
testcase_25 AC 101 ms
94,496 KB
testcase_26 AC 107 ms
94,880 KB
testcase_27 AC 109 ms
95,016 KB
testcase_28 AC 107 ms
96,388 KB
testcase_29 AC 113 ms
100,036 KB
testcase_30 AC 173 ms
143,944 KB
testcase_31 AC 225 ms
160,644 KB
testcase_32 AC 222 ms
160,408 KB
testcase_33 AC 152 ms
114,128 KB
testcase_34 AC 192 ms
150,172 KB
testcase_35 AC 182 ms
144,812 KB
testcase_36 AC 185 ms
149,604 KB
testcase_37 AC 178 ms
143,528 KB
testcase_38 AC 213 ms
170,672 KB
testcase_39 AC 171 ms
131,152 KB
testcase_40 AC 168 ms
131,344 KB
testcase_41 AC 170 ms
131,112 KB
testcase_42 AC 107 ms
94,284 KB
testcase_43 AC 103 ms
94,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 10 ** 6
prime_list = [] # 素数リスト
lpf = [0] * (N + 1) # 最小素因数
for i in range(2, N + 1):
    if not lpf[i]:
        lpf[i] = i
        prime_list.append(i)
    a = lpf[i]
    for p in prime_list:
        if p > a or p * i > N: break
        lpf[p*i] = p
# print("lpf =", lpf)
L = [0] * (N + 1)
for i in range(2, N + 1):
    p = lpf[i]
    L[i] = L[i//p] + 1
n = int(input())
A = [int(a) for a in input().split()]
s = 0
for a in A:
    s ^= L[a]
print("white" if s else "black")
0