結果

問題 No.1665 quotient replace
ユーザー H3PO4H3PO4
提出日時 2021-09-03 21:47:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,262 ms / 3,000 ms
コード長 339 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 137,100 KB
最終ジャッジ日時 2024-12-15 12:01:13
合計ジャッジ時間 48,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 901 ms
51,716 KB
testcase_01 AC 874 ms
51,492 KB
testcase_02 AC 897 ms
51,624 KB
testcase_03 AC 886 ms
51,360 KB
testcase_04 AC 879 ms
51,624 KB
testcase_05 AC 877 ms
51,876 KB
testcase_06 AC 899 ms
51,360 KB
testcase_07 AC 879 ms
51,496 KB
testcase_08 AC 899 ms
51,356 KB
testcase_09 AC 917 ms
52,124 KB
testcase_10 AC 1,061 ms
73,804 KB
testcase_11 AC 1,181 ms
118,804 KB
testcase_12 AC 890 ms
52,792 KB
testcase_13 AC 1,237 ms
136,420 KB
testcase_14 AC 1,212 ms
137,100 KB
testcase_15 AC 1,216 ms
136,340 KB
testcase_16 AC 1,251 ms
136,668 KB
testcase_17 AC 1,262 ms
136,752 KB
testcase_18 AC 887 ms
51,752 KB
testcase_19 AC 899 ms
51,496 KB
testcase_20 AC 913 ms
51,360 KB
testcase_21 AC 878 ms
51,360 KB
testcase_22 AC 911 ms
51,748 KB
testcase_23 AC 900 ms
51,356 KB
testcase_24 AC 905 ms
51,484 KB
testcase_25 AC 875 ms
51,744 KB
testcase_26 AC 865 ms
51,756 KB
testcase_27 AC 904 ms
51,492 KB
testcase_28 AC 906 ms
51,812 KB
testcase_29 AC 910 ms
52,796 KB
testcase_30 AC 1,059 ms
90,068 KB
testcase_31 AC 1,180 ms
120,956 KB
testcase_32 AC 1,174 ms
110,496 KB
testcase_33 AC 1,014 ms
67,220 KB
testcase_34 AC 1,134 ms
96,664 KB
testcase_35 AC 1,090 ms
95,200 KB
testcase_36 AC 1,137 ms
94,672 KB
testcase_37 AC 1,069 ms
90,204 KB
testcase_38 AC 1,145 ms
100,116 KB
testcase_39 AC 1,082 ms
84,680 KB
testcase_40 AC 1,068 ms
84,692 KB
testcase_41 AC 1,030 ms
85,264 KB
testcase_42 AC 865 ms
51,496 KB
testcase_43 AC 873 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
A = np.array(list(map(int, input().split())))
MAX = 10 ** 6
table = np.zeros(MAX + 1, dtype=int)
for i in range(2, MAX + 1):
    if not table[i]:
        j = i
        while j <= MAX:
            table[j::j] += 1
            j *= i

x = np.bitwise_xor.reduce(table[A])
print('white' if x else 'black')
0