結果

問題 No.1665 quotient replace
ユーザー H20H20
提出日時 2021-09-03 22:12:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 267,436 KB
最終ジャッジ日時 2024-12-15 13:51:34
合計ジャッジ時間 9,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 82 ms
85,264 KB
testcase_03 AC 83 ms
85,576 KB
testcase_04 AC 87 ms
84,760 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 94 ms
89,108 KB
testcase_09 AC 91 ms
93,152 KB
testcase_10 WA -
testcase_11 AC 217 ms
184,160 KB
testcase_12 AC 102 ms
105,300 KB
testcase_13 AC 298 ms
266,304 KB
testcase_14 AC 295 ms
266,852 KB
testcase_15 AC 289 ms
267,156 KB
testcase_16 AC 295 ms
267,160 KB
testcase_17 WA -
testcase_18 AC 86 ms
84,928 KB
testcase_19 AC 87 ms
85,108 KB
testcase_20 AC 81 ms
85,012 KB
testcase_21 AC 87 ms
84,992 KB
testcase_22 AC 89 ms
85,540 KB
testcase_23 AC 88 ms
86,356 KB
testcase_24 AC 93 ms
85,592 KB
testcase_25 AC 92 ms
85,544 KB
testcase_26 AC 91 ms
86,788 KB
testcase_27 AC 91 ms
88,656 KB
testcase_28 AC 94 ms
94,576 KB
testcase_29 AC 112 ms
101,840 KB
testcase_30 AC 203 ms
168,056 KB
testcase_31 AC 228 ms
196,408 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 210 ms
182,008 KB
testcase_35 AC 186 ms
169,140 KB
testcase_36 AC 195 ms
179,140 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 179 ms
157,980 KB
testcase_40 AC 177 ms
157,844 KB
testcase_41 AC 176 ms
157,896 KB
testcase_42 AC 84 ms
85,712 KB
testcase_43 AC 83 ms
84,508 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==1:
    print('white')
else:
    print('black')
0