結果

問題 No.1665 quotient replace
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 23:13:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 3,000 ms
コード長 498 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 188,196 KB
最終ジャッジ日時 2024-12-15 17:35:58
合計ジャッジ時間 8,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
94,704 KB
testcase_01 AC 101 ms
94,528 KB
testcase_02 AC 102 ms
94,852 KB
testcase_03 AC 100 ms
94,600 KB
testcase_04 AC 101 ms
94,408 KB
testcase_05 AC 104 ms
94,684 KB
testcase_06 AC 105 ms
94,812 KB
testcase_07 AC 102 ms
94,672 KB
testcase_08 AC 106 ms
94,724 KB
testcase_09 AC 111 ms
96,140 KB
testcase_10 AC 156 ms
122,616 KB
testcase_11 AC 217 ms
160,400 KB
testcase_12 AC 119 ms
102,460 KB
testcase_13 AC 241 ms
187,876 KB
testcase_14 AC 236 ms
187,960 KB
testcase_15 AC 234 ms
187,884 KB
testcase_16 AC 248 ms
188,196 KB
testcase_17 AC 242 ms
187,984 KB
testcase_18 AC 102 ms
94,532 KB
testcase_19 AC 103 ms
94,588 KB
testcase_20 AC 109 ms
94,876 KB
testcase_21 AC 104 ms
94,556 KB
testcase_22 AC 103 ms
94,544 KB
testcase_23 AC 104 ms
94,560 KB
testcase_24 AC 103 ms
94,540 KB
testcase_25 AC 99 ms
94,540 KB
testcase_26 AC 107 ms
94,872 KB
testcase_27 AC 117 ms
95,036 KB
testcase_28 AC 120 ms
96,664 KB
testcase_29 AC 116 ms
100,120 KB
testcase_30 AC 174 ms
143,404 KB
testcase_31 AC 224 ms
160,368 KB
testcase_32 AC 212 ms
160,296 KB
testcase_33 AC 144 ms
114,160 KB
testcase_34 AC 176 ms
150,564 KB
testcase_35 AC 177 ms
144,724 KB
testcase_36 AC 179 ms
149,936 KB
testcase_37 AC 174 ms
143,640 KB
testcase_38 AC 209 ms
170,472 KB
testcase_39 AC 164 ms
131,364 KB
testcase_40 AC 166 ms
131,240 KB
testcase_41 AC 167 ms
131,360 KB
testcase_42 AC 100 ms
94,528 KB
testcase_43 AC 103 ms
94,340 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