結果

問題 No.1665 quotient replace
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-09-03 21:41:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 450 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 245,568 KB
最終ジャッジ日時 2024-12-15 11:21:31
合計ジャッジ時間 30,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 42 ms
59,520 KB
testcase_04 AC 44 ms
59,776 KB
testcase_05 AC 38 ms
57,856 KB
testcase_06 AC 68 ms
73,088 KB
testcase_07 AC 53 ms
63,360 KB
testcase_08 AC 63 ms
70,144 KB
testcase_09 AC 106 ms
78,592 KB
testcase_10 AC 593 ms
121,748 KB
testcase_11 AC 1,231 ms
173,408 KB
testcase_12 AC 183 ms
87,936 KB
testcase_13 AC 1,609 ms
245,188 KB
testcase_14 AC 1,669 ms
245,192 KB
testcase_15 AC 1,661 ms
245,192 KB
testcase_16 AC 1,610 ms
245,568 KB
testcase_17 AC 2,185 ms
244,932 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 34 ms
51,840 KB
testcase_20 AC 36 ms
51,456 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 34 ms
51,584 KB
testcase_23 AC 36 ms
51,584 KB
testcase_24 AC 35 ms
51,840 KB
testcase_25 AC 34 ms
52,096 KB
testcase_26 AC 54 ms
62,592 KB
testcase_27 AC 77 ms
67,328 KB
testcase_28 AC 203 ms
79,232 KB
testcase_29 AC 354 ms
84,864 KB
testcase_30 AC 2,360 ms
157,708 KB
testcase_31 TLE -
testcase_32 AC 1,683 ms
172,608 KB
testcase_33 AC 506 ms
108,160 KB
testcase_34 AC 965 ms
174,552 KB
testcase_35 AC 928 ms
159,980 KB
testcase_36 AC 973 ms
171,444 KB
testcase_37 AC 904 ms
157,812 KB
testcase_38 AC 1,122 ms
186,688 KB
testcase_39 AC 810 ms
143,208 KB
testcase_40 AC 814 ms
142,948 KB
testcase_41 AC 795 ms
143,208 KB
testcase_42 AC 38 ms
51,968 KB
testcase_43 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

n = int(input())
a = list(map(int, input().split()))
b = []
for i in a:
	b.append(len(prime_factorize(i)))
ans = 0
for i in b:
	ans ^= i
print("black" if ans == 0 else "white")
0