結果

問題 No.1665 quotient replace
ユーザー H3PO4H3PO4
提出日時 2021-09-03 21:47:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,231 ms / 3,000 ms
コード長 339 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 136,396 KB
最終ジャッジ日時 2024-05-09 03:05:38
合計ジャッジ時間 47,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 855 ms
51,620 KB
testcase_01 AC 858 ms
51,484 KB
testcase_02 AC 889 ms
51,488 KB
testcase_03 AC 853 ms
51,488 KB
testcase_04 AC 855 ms
51,496 KB
testcase_05 AC 843 ms
51,356 KB
testcase_06 AC 857 ms
51,740 KB
testcase_07 AC 860 ms
51,748 KB
testcase_08 AC 886 ms
51,876 KB
testcase_09 AC 901 ms
52,516 KB
testcase_10 AC 973 ms
73,564 KB
testcase_11 AC 1,148 ms
118,840 KB
testcase_12 AC 896 ms
52,556 KB
testcase_13 AC 1,227 ms
135,776 KB
testcase_14 AC 1,216 ms
136,396 KB
testcase_15 AC 1,231 ms
136,160 KB
testcase_16 AC 1,218 ms
136,012 KB
testcase_17 AC 1,214 ms
135,824 KB
testcase_18 AC 850 ms
51,492 KB
testcase_19 AC 847 ms
51,872 KB
testcase_20 AC 850 ms
51,488 KB
testcase_21 AC 871 ms
51,484 KB
testcase_22 AC 853 ms
51,876 KB
testcase_23 AC 859 ms
52,004 KB
testcase_24 AC 886 ms
52,004 KB
testcase_25 AC 868 ms
51,624 KB
testcase_26 AC 880 ms
51,748 KB
testcase_27 AC 871 ms
51,620 KB
testcase_28 AC 883 ms
52,180 KB
testcase_29 AC 897 ms
52,548 KB
testcase_30 AC 1,047 ms
89,812 KB
testcase_31 AC 1,167 ms
120,836 KB
testcase_32 AC 1,122 ms
110,144 KB
testcase_33 AC 943 ms
67,224 KB
testcase_34 AC 1,090 ms
96,856 KB
testcase_35 AC 1,083 ms
95,076 KB
testcase_36 AC 1,052 ms
94,424 KB
testcase_37 AC 1,036 ms
89,664 KB
testcase_38 AC 1,099 ms
99,940 KB
testcase_39 AC 1,061 ms
85,008 KB
testcase_40 AC 1,036 ms
84,876 KB
testcase_41 AC 1,020 ms
84,860 KB
testcase_42 AC 852 ms
51,616 KB
testcase_43 AC 851 ms
51,488 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