結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,984 KB
testcase_01 AC 43 ms
57,600 KB
testcase_02 AC 44 ms
57,984 KB
testcase_03 AC 48 ms
60,800 KB
testcase_04 AC 50 ms
61,824 KB
testcase_05 AC 43 ms
59,008 KB
testcase_06 AC 69 ms
64,000 KB
testcase_07 AC 54 ms
62,976 KB
testcase_08 AC 63 ms
64,640 KB
testcase_09 AC 131 ms
69,120 KB
testcase_10 AC 918 ms
106,100 KB
testcase_11 AC 1,978 ms
151,544 KB
testcase_12 AC 260 ms
78,592 KB
testcase_13 AC 2,237 ms
178,372 KB
testcase_14 AC 2,240 ms
178,800 KB
testcase_15 AC 2,243 ms
178,888 KB
testcase_16 AC 2,246 ms
178,884 KB
testcase_17 AC 2,244 ms
179,012 KB
testcase_18 AC 40 ms
57,472 KB
testcase_19 WA -
testcase_20 AC 40 ms
57,984 KB
testcase_21 AC 40 ms
57,728 KB
testcase_22 AC 41 ms
57,728 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 41 ms
57,728 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 40 ms
57,984 KB
testcase_43 AC 41 ms
57,856 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
        if num==1:
            break
    ans^=sub
print("white") if ans else print("black")
0