結果

問題 No.1665 quotient replace
ユーザー H20H20
提出日時 2021-09-10 12:55:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 521 ms / 3,000 ms
コード長 362 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 253,780 KB
最終ジャッジ日時 2024-06-10 23:15:54
合計ジャッジ時間 12,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
70,784 KB
testcase_01 AC 73 ms
70,784 KB
testcase_02 AC 83 ms
70,528 KB
testcase_03 AC 82 ms
71,680 KB
testcase_04 AC 80 ms
72,832 KB
testcase_05 AC 74 ms
70,656 KB
testcase_06 AC 83 ms
75,392 KB
testcase_07 AC 82 ms
72,960 KB
testcase_08 AC 85 ms
74,112 KB
testcase_09 AC 91 ms
81,664 KB
testcase_10 AC 245 ms
153,400 KB
testcase_11 AC 402 ms
223,716 KB
testcase_12 AC 130 ms
97,920 KB
testcase_13 AC 516 ms
253,648 KB
testcase_14 AC 506 ms
253,652 KB
testcase_15 AC 520 ms
253,780 KB
testcase_16 AC 520 ms
253,008 KB
testcase_17 AC 521 ms
253,260 KB
testcase_18 AC 74 ms
71,040 KB
testcase_19 AC 74 ms
71,040 KB
testcase_20 AC 80 ms
70,784 KB
testcase_21 AC 77 ms
70,400 KB
testcase_22 AC 78 ms
70,888 KB
testcase_23 AC 76 ms
70,272 KB
testcase_24 AC 79 ms
70,784 KB
testcase_25 AC 85 ms
70,784 KB
testcase_26 AC 83 ms
73,344 KB
testcase_27 AC 99 ms
75,264 KB
testcase_28 AC 87 ms
83,072 KB
testcase_29 AC 102 ms
92,544 KB
testcase_30 AC 260 ms
191,272 KB
testcase_31 AC 303 ms
241,960 KB
testcase_32 AC 380 ms
222,524 KB
testcase_33 AC 230 ms
133,924 KB
testcase_34 AC 332 ms
181,328 KB
testcase_35 AC 314 ms
192,592 KB
testcase_36 AC 346 ms
179,516 KB
testcase_37 AC 322 ms
191,480 KB
testcase_38 AC 373 ms
194,220 KB
testcase_39 AC 318 ms
176,788 KB
testcase_40 AC 302 ms
176,360 KB
testcase_41 AC 292 ms
176,872 KB
testcase_42 AC 78 ms
70,656 KB
testcase_43 AC 87 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
T = [0]*(10**6+1)
for i in range(2,10**6+1):
    if T[i]==0:
        for j in range(i,10**6+1,i):
            T[j]=i

XOR = []
for a in A:
    c = 0
    while T[a]>0:
        c+=1
        a = a//T[a]
    XOR.append(c)

nim = 0
for xor in XOR:
    nim^=xor
if nim==0:
    print('black')
else:
    print('white')
0