結果

問題 No.1665 quotient replace
ユーザー nikumakarenikumakare
提出日時 2021-12-09 23:27:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,349 ms / 3,000 ms
コード長 438 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 179,000 KB
最終ジャッジ日時 2024-07-17 16:28:04
合計ジャッジ時間 35,939 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
57,728 KB
testcase_01 AC 48 ms
58,112 KB
testcase_02 AC 45 ms
57,728 KB
testcase_03 AC 55 ms
60,800 KB
testcase_04 AC 57 ms
61,952 KB
testcase_05 AC 48 ms
58,880 KB
testcase_06 AC 77 ms
64,000 KB
testcase_07 AC 61 ms
63,360 KB
testcase_08 AC 71 ms
64,384 KB
testcase_09 AC 138 ms
69,504 KB
testcase_10 AC 946 ms
105,984 KB
testcase_11 AC 2,031 ms
151,608 KB
testcase_12 AC 273 ms
78,720 KB
testcase_13 AC 2,282 ms
178,728 KB
testcase_14 AC 2,326 ms
178,620 KB
testcase_15 AC 2,255 ms
179,000 KB
testcase_16 AC 2,245 ms
178,744 KB
testcase_17 AC 2,250 ms
178,744 KB
testcase_18 AC 41 ms
57,728 KB
testcase_19 AC 40 ms
57,728 KB
testcase_20 AC 40 ms
57,856 KB
testcase_21 AC 41 ms
57,728 KB
testcase_22 AC 40 ms
57,728 KB
testcase_23 AC 40 ms
57,600 KB
testcase_24 AC 40 ms
58,112 KB
testcase_25 AC 40 ms
57,472 KB
testcase_26 AC 50 ms
60,544 KB
testcase_27 AC 64 ms
61,568 KB
testcase_28 AC 142 ms
66,176 KB
testcase_29 AC 247 ms
72,320 KB
testcase_30 AC 1,555 ms
125,476 KB
testcase_31 AC 2,349 ms
151,308 KB
testcase_32 AC 1,891 ms
156,596 KB
testcase_33 AC 748 ms
102,772 KB
testcase_34 AC 1,535 ms
138,256 KB
testcase_35 AC 1,409 ms
128,024 KB
testcase_36 AC 1,479 ms
134,952 KB
testcase_37 AC 1,358 ms
125,544 KB
testcase_38 AC 1,617 ms
145,432 KB
testcase_39 AC 1,146 ms
114,476 KB
testcase_40 AC 1,143 ms
114,524 KB
testcase_41 AC 1,151 ms
114,780 KB
testcase_42 AC 41 ms
57,984 KB
testcase_43 AC 42 ms
57,472 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
    if num>1:
        sub+=1
    ans^=sub
print("white") if ans else print("black")
0