結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 44 ms
60,160 KB
testcase_04 AC 44 ms
60,032 KB
testcase_05 AC 40 ms
58,112 KB
testcase_06 AC 73 ms
73,344 KB
testcase_07 AC 50 ms
63,744 KB
testcase_08 AC 64 ms
70,784 KB
testcase_09 AC 110 ms
78,660 KB
testcase_10 AC 630 ms
121,904 KB
testcase_11 AC 1,291 ms
173,800 KB
testcase_12 AC 196 ms
88,064 KB
testcase_13 AC 1,724 ms
245,448 KB
testcase_14 AC 1,716 ms
245,448 KB
testcase_15 AC 1,713 ms
245,700 KB
testcase_16 AC 1,718 ms
245,956 KB
testcase_17 AC 2,360 ms
245,904 KB
testcase_18 AC 35 ms
52,096 KB
testcase_19 AC 35 ms
52,480 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 35 ms
51,712 KB
testcase_22 AC 35 ms
51,968 KB
testcase_23 AC 34 ms
52,224 KB
testcase_24 AC 34 ms
52,096 KB
testcase_25 AC 34 ms
51,968 KB
testcase_26 AC 55 ms
62,464 KB
testcase_27 AC 79 ms
67,200 KB
testcase_28 AC 209 ms
79,200 KB
testcase_29 AC 381 ms
84,892 KB
testcase_30 AC 2,509 ms
157,828 KB
testcase_31 TLE -
testcase_32 AC 1,685 ms
172,272 KB
testcase_33 AC 516 ms
108,672 KB
testcase_34 AC 1,024 ms
174,296 KB
testcase_35 AC 936 ms
160,336 KB
testcase_36 AC 984 ms
171,572 KB
testcase_37 AC 898 ms
157,624 KB
testcase_38 AC 1,072 ms
186,712 KB
testcase_39 AC 777 ms
143,200 KB
testcase_40 AC 775 ms
143,320 KB
testcase_41 AC 777 ms
143,088 KB
testcase_42 AC 36 ms
51,840 KB
testcase_43 AC 36 ms
51,904 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