結果

問題 No.1665 quotient replace
ユーザー H20H20
提出日時 2021-09-10 12:52:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 271,132 KB
最終ジャッジ日時 2025-01-03 00:02:17
合計ジャッジ時間 12,788 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
65,792 KB
testcase_01 AC 60 ms
65,792 KB
testcase_02 AC 62 ms
65,792 KB
testcase_03 AC 74 ms
68,736 KB
testcase_04 AC 74 ms
69,120 KB
testcase_05 AC 67 ms
66,176 KB
testcase_06 AC 90 ms
71,552 KB
testcase_07 AC 71 ms
69,248 KB
testcase_08 AC 74 ms
71,424 KB
testcase_09 AC 81 ms
78,976 KB
testcase_10 AC 234 ms
153,056 KB
testcase_11 AC 408 ms
223,660 KB
testcase_12 AC 101 ms
94,208 KB
testcase_13 AC 561 ms
270,756 KB
testcase_14 AC 531 ms
270,620 KB
testcase_15 AC 513 ms
271,132 KB
testcase_16 AC 518 ms
270,768 KB
testcase_17 AC 510 ms
270,972 KB
testcase_18 AC 56 ms
65,920 KB
testcase_19 WA -
testcase_20 AC 56 ms
65,880 KB
testcase_21 AC 56 ms
66,048 KB
testcase_22 AC 55 ms
65,792 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 54 ms
65,792 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 58 ms
66,304 KB
testcase_43 AC 58 ms
65,792 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