結果

問題 No.1665 quotient replace
ユーザー Kiri8128Kiri8128
提出日時 2021-09-03 23:14:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,626 ms / 3,000 ms
コード長 498 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 138,076 KB
最終ジャッジ日時 2024-05-09 06:59:12
合計ジャッジ時間 55,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,007 ms
29,520 KB
testcase_01 AC 1,007 ms
29,664 KB
testcase_02 AC 1,062 ms
29,552 KB
testcase_03 AC 1,015 ms
29,556 KB
testcase_04 AC 1,030 ms
29,660 KB
testcase_05 AC 1,019 ms
29,504 KB
testcase_06 AC 1,067 ms
30,220 KB
testcase_07 AC 1,033 ms
29,652 KB
testcase_08 AC 1,015 ms
29,904 KB
testcase_09 AC 1,081 ms
32,188 KB
testcase_10 AC 1,241 ms
61,236 KB
testcase_11 AC 1,522 ms
106,340 KB
testcase_12 AC 1,117 ms
38,236 KB
testcase_13 AC 1,626 ms
137,656 KB
testcase_14 AC 1,606 ms
137,792 KB
testcase_15 AC 1,564 ms
137,576 KB
testcase_16 AC 1,558 ms
138,076 KB
testcase_17 AC 1,603 ms
137,628 KB
testcase_18 AC 1,047 ms
29,436 KB
testcase_19 AC 1,024 ms
29,580 KB
testcase_20 AC 989 ms
29,524 KB
testcase_21 AC 1,008 ms
29,552 KB
testcase_22 AC 1,059 ms
29,440 KB
testcase_23 AC 997 ms
29,556 KB
testcase_24 AC 985 ms
29,384 KB
testcase_25 AC 1,020 ms
29,520 KB
testcase_26 AC 1,027 ms
29,628 KB
testcase_27 AC 1,065 ms
30,300 KB
testcase_28 AC 1,031 ms
32,488 KB
testcase_29 AC 1,082 ms
35,952 KB
testcase_30 AC 1,328 ms
80,776 KB
testcase_31 AC 1,487 ms
108,280 KB
testcase_32 AC 1,454 ms
102,532 KB
testcase_33 AC 1,194 ms
56,652 KB
testcase_34 AC 1,357 ms
87,732 KB
testcase_35 AC 1,311 ms
83,084 KB
testcase_36 AC 1,411 ms
85,504 KB
testcase_37 AC 1,279 ms
80,640 KB
testcase_38 AC 1,412 ms
87,188 KB
testcase_39 AC 1,300 ms
72,600 KB
testcase_40 AC 1,284 ms
72,684 KB
testcase_41 AC 1,278 ms
72,564 KB
testcase_42 AC 1,022 ms
29,368 KB
testcase_43 AC 1,004 ms
29,516 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