結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 20:40:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,778 ms / 3,000 ms
コード長 481 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 119,304 KB
最終ジャッジ日時 2024-05-09 00:43:42
合計ジャッジ時間 71,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,062 ms
21,888 KB
testcase_01 AC 1,111 ms
21,632 KB
testcase_02 AC 1,117 ms
21,760 KB
testcase_03 AC 1,101 ms
21,760 KB
testcase_04 AC 1,093 ms
21,760 KB
testcase_05 AC 1,077 ms
21,760 KB
testcase_06 AC 1,082 ms
22,400 KB
testcase_07 AC 1,092 ms
21,888 KB
testcase_08 AC 1,064 ms
21,888 KB
testcase_09 AC 1,147 ms
24,488 KB
testcase_10 AC 1,626 ms
53,248 KB
testcase_11 AC 2,280 ms
97,964 KB
testcase_12 AC 1,200 ms
30,408 KB
testcase_13 AC 2,778 ms
119,272 KB
testcase_14 AC 2,680 ms
119,088 KB
testcase_15 AC 2,647 ms
119,220 KB
testcase_16 AC 2,678 ms
119,220 KB
testcase_17 AC 2,749 ms
119,304 KB
testcase_18 AC 1,097 ms
21,888 KB
testcase_19 AC 1,120 ms
21,632 KB
testcase_20 AC 1,106 ms
21,632 KB
testcase_21 AC 1,106 ms
21,632 KB
testcase_22 AC 1,062 ms
21,760 KB
testcase_23 AC 1,132 ms
21,760 KB
testcase_24 AC 1,107 ms
21,632 KB
testcase_25 AC 1,083 ms
21,632 KB
testcase_26 AC 1,099 ms
22,016 KB
testcase_27 AC 1,083 ms
22,272 KB
testcase_28 AC 1,104 ms
24,996 KB
testcase_29 AC 1,135 ms
28,128 KB
testcase_30 AC 1,523 ms
73,004 KB
testcase_31 AC 1,778 ms
99,960 KB
testcase_32 AC 2,262 ms
94,664 KB
testcase_33 AC 1,518 ms
48,684 KB
testcase_34 AC 2,084 ms
80,272 KB
testcase_35 AC 1,959 ms
75,176 KB
testcase_36 AC 1,991 ms
77,716 KB
testcase_37 AC 1,966 ms
72,844 KB
testcase_38 AC 2,124 ms
79,228 KB
testcase_39 AC 1,788 ms
64,888 KB
testcase_40 AC 1,818 ms
64,884 KB
testcase_41 AC 1,761 ms
65,016 KB
testcase_42 AC 1,063 ms
21,760 KB
testcase_43 AC 1,066 ms
21,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Python (not PyPy) speed test

spf = [0 for i in range(1000001)]
pr = []
for i in range(2, 1000001):
    if spf[i] == 0:
        spf[i] = i
        pr.append(i)
    j = 0
    while j < len(pr) and pr[j] <= spf[i] and i * pr[j] <= 1000000:
        spf[i * pr[j]] = pr[j]
        j += 1

n = int(input())
a = list(map(int, input().split()))
fold = 0
for v in a:
    cnt = 0
    while v > 1:
        v //= spf[v]
        cnt += 1
    fold ^= cnt

print("white" if fold else "black")
0