結果

問題 No.1665 quotient replace
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-16 14:27:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 3,000 ms
コード長 613 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 265,624 KB
最終ジャッジ日時 2024-06-29 14:24:02
合計ジャッジ時間 13,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
75,264 KB
testcase_01 AC 87 ms
75,620 KB
testcase_02 AC 88 ms
75,904 KB
testcase_03 AC 99 ms
80,640 KB
testcase_04 AC 104 ms
80,896 KB
testcase_05 AC 94 ms
75,904 KB
testcase_06 AC 115 ms
90,536 KB
testcase_07 AC 113 ms
82,560 KB
testcase_08 AC 107 ms
85,632 KB
testcase_09 AC 130 ms
94,612 KB
testcase_10 AC 326 ms
144,948 KB
testcase_11 AC 582 ms
195,160 KB
testcase_12 AC 179 ms
103,932 KB
testcase_13 AC 732 ms
265,352 KB
testcase_14 AC 748 ms
265,612 KB
testcase_15 AC 711 ms
265,620 KB
testcase_16 AC 699 ms
265,624 KB
testcase_17 AC 717 ms
265,612 KB
testcase_18 AC 84 ms
76,032 KB
testcase_19 AC 78 ms
77,144 KB
testcase_20 AC 81 ms
75,960 KB
testcase_21 AC 79 ms
76,140 KB
testcase_22 AC 80 ms
76,712 KB
testcase_23 AC 78 ms
76,092 KB
testcase_24 AC 80 ms
76,400 KB
testcase_25 AC 78 ms
75,856 KB
testcase_26 AC 85 ms
80,768 KB
testcase_27 AC 107 ms
86,400 KB
testcase_28 AC 117 ms
95,076 KB
testcase_29 AC 134 ms
100,912 KB
testcase_30 AC 290 ms
181,924 KB
testcase_31 AC 407 ms
208,816 KB
testcase_32 AC 555 ms
193,160 KB
testcase_33 AC 261 ms
128,264 KB
testcase_34 AC 468 ms
196,792 KB
testcase_35 AC 421 ms
184,076 KB
testcase_36 AC 440 ms
195,468 KB
testcase_37 AC 414 ms
182,004 KB
testcase_38 AC 474 ms
207,972 KB
testcase_39 AC 348 ms
166,516 KB
testcase_40 AC 357 ms
166,612 KB
testcase_41 AC 364 ms
166,540 KB
testcase_42 AC 86 ms
76,008 KB
testcase_43 AC 79 ms
76,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = 2*10**6
spf = [-1]*(N+1)
for i in range(N+1):
    spf[i] = i
for i in range(2, int(math.sqrt(N))+1):
    if spf[i] == i:
        for j in range(i*2, N+1, i):
            if spf[j] == j:
                spf[j] = i

def factorize(n):
    d = {}
    while n != 1:
        p = spf[n]
        if p in d:
            d[p] += 1
        else:
            d[p] = 1
        n //= p
    return d

n = int(input())
A = list(map(int, input().split()))
t = 0
for a in A:
    d = factorize(a)
    c = 0
    for k, v in d.items():
        c += v
    t ^= c
if t == 0:
    print('black')
else:
    print('white')
0