結果

問題 No.1665 quotient replace
ユーザー nikumakarenikumakare
提出日時 2021-12-09 23:25:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 372 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 179,148 KB
最終ジャッジ日時 2024-07-17 16:25:27
合計ジャッジ時間 42,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,984 KB
testcase_01 AC 43 ms
57,600 KB
testcase_02 AC 43 ms
57,984 KB
testcase_03 AC 51 ms
60,800 KB
testcase_04 AC 53 ms
61,824 KB
testcase_05 AC 45 ms
58,496 KB
testcase_06 AC 76 ms
65,024 KB
testcase_07 AC 56 ms
62,464 KB
testcase_08 AC 66 ms
63,744 KB
testcase_09 AC 142 ms
68,992 KB
testcase_10 AC 1,044 ms
106,292 KB
testcase_11 AC 2,257 ms
151,660 KB
testcase_12 AC 292 ms
78,208 KB
testcase_13 TLE -
testcase_14 AC 2,938 ms
178,628 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 42 ms
57,512 KB
testcase_19 WA -
testcase_20 AC 42 ms
57,728 KB
testcase_21 AC 42 ms
57,984 KB
testcase_22 AC 43 ms
57,856 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 44 ms
58,112 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 43 ms
58,112 KB
testcase_43 AC 44 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=[int(i) for i in input().split()]
ans=0
sosu=[]
fu=[0 for i in range(1001)]
for i in range(2,1001):
    if fu[i]==0:
        sosu.append(i)
        for q in range(i,1001,i):
            fu[q]=1

for num in A:
    sub=0
    for i in sosu:
        while num%i==0:
            num//=i
            sub+=1
    ans^=sub
print("white") if ans else print("black")
0