結果

問題 No.1665 quotient replace
ユーザー ShirotsumeShirotsume
提出日時 2021-09-03 21:58:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 229,292 KB
最終ジャッジ日時 2024-12-15 13:09:21
合計ジャッジ時間 16,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
75,352 KB
testcase_01 AC 93 ms
75,416 KB
testcase_02 AC 94 ms
75,800 KB
testcase_03 AC 97 ms
79,552 KB
testcase_04 AC 99 ms
80,000 KB
testcase_05 AC 96 ms
76,272 KB
testcase_06 AC 135 ms
86,224 KB
testcase_07 AC 118 ms
86,176 KB
testcase_08 AC 127 ms
86,400 KB
testcase_09 AC 138 ms
88,620 KB
testcase_10 AC 363 ms
151,764 KB
testcase_11 AC 671 ms
206,620 KB
testcase_12 AC 188 ms
97,692 KB
testcase_13 AC 821 ms
229,004 KB
testcase_14 AC 821 ms
229,172 KB
testcase_15 AC 828 ms
228,872 KB
testcase_16 AC 823 ms
229,292 KB
testcase_17 AC 829 ms
229,124 KB
testcase_18 AC 86 ms
75,516 KB
testcase_19 AC 86 ms
75,784 KB
testcase_20 AC 90 ms
76,368 KB
testcase_21 AC 88 ms
75,224 KB
testcase_22 AC 102 ms
75,272 KB
testcase_23 AC 92 ms
76,352 KB
testcase_24 AC 90 ms
75,880 KB
testcase_25 AC 90 ms
75,928 KB
testcase_26 AC 103 ms
82,784 KB
testcase_27 AC 108 ms
86,036 KB
testcase_28 AC 126 ms
89,376 KB
testcase_29 AC 139 ms
94,756 KB
testcase_30 AC 348 ms
172,364 KB
testcase_31 AC 502 ms
223,460 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 90 ms
75,724 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