結果

問題 No.1665 quotient replace
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 23:14:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,672 ms / 3,000 ms
コード長 498 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 137,644 KB
最終ジャッジ日時 2024-12-15 17:40:02
合計ジャッジ時間 53,800 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 972 ms
29,320 KB
testcase_01 AC 954 ms
29,512 KB
testcase_02 AC 969 ms
29,608 KB
testcase_03 AC 956 ms
29,608 KB
testcase_04 AC 970 ms
29,328 KB
testcase_05 AC 951 ms
29,392 KB
testcase_06 AC 996 ms
30,076 KB
testcase_07 AC 1,040 ms
29,608 KB
testcase_08 AC 1,029 ms
29,924 KB
testcase_09 AC 1,022 ms
32,064 KB
testcase_10 AC 1,118 ms
60,952 KB
testcase_11 AC 1,361 ms
105,672 KB
testcase_12 AC 1,028 ms
38,108 KB
testcase_13 AC 1,483 ms
137,644 KB
testcase_14 AC 1,518 ms
137,644 KB
testcase_15 AC 1,672 ms
137,516 KB
testcase_16 AC 1,638 ms
137,644 KB
testcase_17 AC 1,534 ms
137,384 KB
testcase_18 AC 964 ms
29,312 KB
testcase_19 AC 981 ms
29,244 KB
testcase_20 AC 1,032 ms
29,504 KB
testcase_21 AC 965 ms
29,312 KB
testcase_22 AC 942 ms
29,308 KB
testcase_23 AC 937 ms
29,388 KB
testcase_24 AC 940 ms
29,312 KB
testcase_25 AC 994 ms
29,468 KB
testcase_26 AC 936 ms
29,652 KB
testcase_27 AC 1,009 ms
30,160 KB
testcase_28 AC 1,008 ms
32,480 KB
testcase_29 AC 1,032 ms
35,832 KB
testcase_30 AC 1,222 ms
80,716 KB
testcase_31 AC 1,435 ms
107,664 KB
testcase_32 AC 1,379 ms
102,372 KB
testcase_33 AC 1,170 ms
56,392 KB
testcase_34 AC 1,389 ms
87,748 KB
testcase_35 AC 1,312 ms
83,012 KB
testcase_36 AC 1,415 ms
85,636 KB
testcase_37 AC 1,269 ms
80,596 KB
testcase_38 AC 1,313 ms
87,068 KB
testcase_39 AC 1,257 ms
72,724 KB
testcase_40 AC 1,191 ms
72,724 KB
testcase_41 AC 1,208 ms
72,476 KB
testcase_42 AC 981 ms
29,456 KB
testcase_43 AC 1,021 ms
29,464 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