結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-11 20:40:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,496 ms / 3,000 ms
コード長 481 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 119,604 KB
最終ジャッジ日時 2024-12-15 08:52:01
合計ジャッジ時間 64,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,074 ms
21,632 KB
testcase_01 AC 986 ms
21,760 KB
testcase_02 AC 968 ms
21,760 KB
testcase_03 AC 987 ms
21,760 KB
testcase_04 AC 1,030 ms
21,760 KB
testcase_05 AC 1,004 ms
21,760 KB
testcase_06 AC 1,042 ms
22,400 KB
testcase_07 AC 981 ms
21,888 KB
testcase_08 AC 998 ms
22,016 KB
testcase_09 AC 1,021 ms
24,480 KB
testcase_10 AC 1,447 ms
53,380 KB
testcase_11 AC 2,064 ms
98,308 KB
testcase_12 AC 1,143 ms
30,540 KB
testcase_13 AC 2,496 ms
119,252 KB
testcase_14 AC 2,415 ms
119,604 KB
testcase_15 AC 2,399 ms
119,308 KB
testcase_16 AC 2,490 ms
119,460 KB
testcase_17 AC 2,309 ms
119,248 KB
testcase_18 AC 1,025 ms
21,760 KB
testcase_19 AC 1,004 ms
21,760 KB
testcase_20 AC 983 ms
21,760 KB
testcase_21 AC 979 ms
21,760 KB
testcase_22 AC 966 ms
21,760 KB
testcase_23 AC 957 ms
21,760 KB
testcase_24 AC 988 ms
21,888 KB
testcase_25 AC 973 ms
21,760 KB
testcase_26 AC 963 ms
21,888 KB
testcase_27 AC 1,035 ms
22,400 KB
testcase_28 AC 1,030 ms
25,128 KB
testcase_29 AC 1,002 ms
28,128 KB
testcase_30 AC 1,414 ms
73,120 KB
testcase_31 AC 1,608 ms
100,344 KB
testcase_32 AC 1,969 ms
94,680 KB
testcase_33 AC 1,429 ms
48,808 KB
testcase_34 AC 1,853 ms
82,076 KB
testcase_35 AC 1,775 ms
75,244 KB
testcase_36 AC 1,741 ms
77,804 KB
testcase_37 AC 1,715 ms
72,784 KB
testcase_38 AC 1,862 ms
79,728 KB
testcase_39 AC 1,552 ms
64,968 KB
testcase_40 AC 1,585 ms
64,968 KB
testcase_41 AC 1,564 ms
64,972 KB
testcase_42 AC 984 ms
21,760 KB
testcase_43 AC 966 ms
21,760 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