結果

問題 No.1665 quotient replace
ユーザー H20H20
提出日時 2021-09-03 22:13:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 584 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 267,272 KB
最終ジャッジ日時 2024-12-15 13:53:52
合計ジャッジ時間 9,532 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
84,352 KB
testcase_01 WA -
testcase_02 AC 89 ms
84,224 KB
testcase_03 AC 92 ms
84,480 KB
testcase_04 AC 91 ms
84,608 KB
testcase_05 AC 92 ms
84,352 KB
testcase_06 WA -
testcase_07 AC 91 ms
86,400 KB
testcase_08 AC 98 ms
87,936 KB
testcase_09 AC 102 ms
92,928 KB
testcase_10 WA -
testcase_11 AC 239 ms
184,280 KB
testcase_12 AC 111 ms
105,088 KB
testcase_13 AC 314 ms
266,504 KB
testcase_14 AC 313 ms
266,412 KB
testcase_15 AC 316 ms
266,648 KB
testcase_16 AC 318 ms
266,256 KB
testcase_17 WA -
testcase_18 AC 91 ms
84,404 KB
testcase_19 AC 91 ms
84,708 KB
testcase_20 AC 90 ms
84,088 KB
testcase_21 AC 90 ms
84,276 KB
testcase_22 AC 92 ms
84,512 KB
testcase_23 AC 90 ms
84,248 KB
testcase_24 AC 92 ms
84,456 KB
testcase_25 AC 92 ms
84,424 KB
testcase_26 AC 96 ms
86,340 KB
testcase_27 AC 97 ms
87,160 KB
testcase_28 AC 101 ms
93,180 KB
testcase_29 AC 106 ms
100,716 KB
testcase_30 AC 199 ms
167,808 KB
testcase_31 AC 245 ms
196,412 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 230 ms
182,120 KB
testcase_35 WA -
testcase_36 AC 209 ms
178,976 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 91 ms
84,076 KB
testcase_43 AC 90 ms
84,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(n):
    is_prime = [True for _ in range(n+1)]
    is_prime[0] = False

    for i in range(2, n+1):
        if is_prime[i-1]:
            j = i * i
            while j <= n:
                is_prime[j-1] = False
                j += i
    table = [ i for i in range(1, n+1) if is_prime[i-1]]
    return [False]+is_prime, table



N = int(input())
A = list(map(int, input().split())) 
T,_ =  sieve(10**6+1)
p = 0
np = 0
for a in A:
    if a>1: 
        if T[a]:
            p+=1
        else:
            np+=1
if p%2==1 or np%2==1:
    print('white')
else:
    print('black')
0