結果

問題 No.1665 quotient replace
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-16 14:26:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 585 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 87,184 KB
実行使用メモリ 179,552 KB
最終ジャッジ日時 2023-09-12 01:19:29
合計ジャッジ時間 13,932 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,692 KB
testcase_01 AC 74 ms
71,300 KB
testcase_02 AC 74 ms
71,632 KB
testcase_03 AC 95 ms
77,076 KB
testcase_04 AC 97 ms
77,048 KB
testcase_05 AC 83 ms
76,008 KB
testcase_06 AC 187 ms
78,204 KB
testcase_07 AC 108 ms
77,100 KB
testcase_08 AC 148 ms
77,864 KB
testcase_09 AC 431 ms
80,444 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