結果

問題 No.1665 quotient replace
ユーザー ShirotsumeShirotsume
提出日時 2021-09-03 21:58:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 229,440 KB
最終ジャッジ日時 2024-05-09 03:48:38
合計ジャッジ時間 14,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
76,084 KB
testcase_01 AC 87 ms
75,148 KB
testcase_02 AC 81 ms
75,644 KB
testcase_03 AC 87 ms
78,548 KB
testcase_04 AC 90 ms
80,856 KB
testcase_05 AC 84 ms
76,884 KB
testcase_06 AC 117 ms
86,212 KB
testcase_07 AC 106 ms
86,248 KB
testcase_08 AC 118 ms
86,372 KB
testcase_09 AC 128 ms
88,620 KB
testcase_10 AC 337 ms
151,812 KB
testcase_11 AC 595 ms
206,468 KB
testcase_12 AC 160 ms
97,888 KB
testcase_13 AC 722 ms
229,020 KB
testcase_14 AC 717 ms
228,988 KB
testcase_15 AC 711 ms
228,924 KB
testcase_16 AC 739 ms
229,044 KB
testcase_17 AC 737 ms
229,440 KB
testcase_18 AC 80 ms
75,604 KB
testcase_19 AC 79 ms
76,336 KB
testcase_20 AC 80 ms
75,472 KB
testcase_21 AC 79 ms
76,096 KB
testcase_22 AC 81 ms
76,628 KB
testcase_23 AC 81 ms
76,288 KB
testcase_24 AC 80 ms
75,872 KB
testcase_25 AC 80 ms
76,340 KB
testcase_26 AC 93 ms
82,796 KB
testcase_27 AC 100 ms
86,204 KB
testcase_28 AC 114 ms
89,508 KB
testcase_29 AC 125 ms
94,636 KB
testcase_30 AC 290 ms
172,192 KB
testcase_31 AC 417 ms
223,692 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 80 ms
76,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
#N = 入力の最大
N = 1145140
sieve = [i for i in range(N + 1)]

for i in range(2,N + 1):
    if sieve[i] == i:
        for j in range(2 * i, N + 1, i):
            sieve[j] = i

def prime_fact(X):
    ret = Counter()
    if X == 1:
        return 0
    while 1:
        ret[sieve[X]] += 1
        if sieve[X] == X:
            break
        else:
            X //= sieve[X]
    ans = 1
    for v in ret.values():
        ans *= v + 1
    return ans

n = int(input())

a = list(map(int,input().split()))

b = [0] * n 

for i in range(n):
    b[i] = prime_fact(a[i]) - 1
x = 0
for i in range(n):
    x ^= b[i]
if x == 0:
    print('black')
else:
    print('white')
0