結果

問題 No.1665 quotient replace
ユーザー H20H20
提出日時 2021-09-10 12:52:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 271,304 KB
最終ジャッジ日時 2024-06-10 23:12:46
合計ジャッジ時間 11,374 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
65,792 KB
testcase_01 AC 53 ms
65,996 KB
testcase_02 AC 53 ms
65,920 KB
testcase_03 AC 59 ms
68,908 KB
testcase_04 AC 57 ms
68,864 KB
testcase_05 AC 53 ms
65,920 KB
testcase_06 AC 62 ms
72,064 KB
testcase_07 AC 58 ms
68,864 KB
testcase_08 AC 60 ms
71,680 KB
testcase_09 AC 69 ms
78,976 KB
testcase_10 AC 198 ms
152,920 KB
testcase_11 AC 360 ms
223,716 KB
testcase_12 AC 93 ms
94,364 KB
testcase_13 AC 470 ms
270,928 KB
testcase_14 AC 471 ms
270,672 KB
testcase_15 AC 446 ms
270,668 KB
testcase_16 AC 437 ms
271,304 KB
testcase_17 AC 452 ms
270,784 KB
testcase_18 AC 54 ms
66,012 KB
testcase_19 WA -
testcase_20 AC 52 ms
66,048 KB
testcase_21 AC 52 ms
66,176 KB
testcase_22 AC 53 ms
66,048 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 53 ms
66,176 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 53 ms
65,916 KB
testcase_43 AC 53 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
T = [0]*(10**6+1)
for i in range(2,10**3+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