結果

問題 No.1665 quotient replace
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-16 14:26:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 585 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 173,084 KB
最終ジャッジ日時 2024-06-29 14:23:44
合計ジャッジ時間 11,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 68 ms
64,000 KB
testcase_04 AC 61 ms
64,128 KB
testcase_05 AC 42 ms
59,008 KB
testcase_06 AC 158 ms
76,416 KB
testcase_07 AC 74 ms
67,200 KB
testcase_08 AC 105 ms
72,960 KB
testcase_09 AC 340 ms
79,232 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def factorize(n):
    d = {}
    temp = int(math.sqrt(n))+1
    for i in range(2, temp):
        while n%i== 0:
            n //= i
            if i in d:
                d[i] += 1
            else:
                d[i] = 1
    if d == {}:
        d[n] = 1
    else:
        if n in d:
            d[n] += 1
        elif n != 1:
            d[n] =1
    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