結果

問題 No.1665 quotient replace
ユーザー H20H20
提出日時 2021-09-03 22:17:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 268,100 KB
最終ジャッジ日時 2024-05-09 04:38:26
合計ジャッジ時間 9,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
84,352 KB
testcase_01 WA -
testcase_02 AC 90 ms
84,352 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 90 ms
84,736 KB
testcase_06 WA -
testcase_07 AC 94 ms
86,144 KB
testcase_08 WA -
testcase_09 AC 99 ms
93,056 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 112 ms
105,216 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 343 ms
266,520 KB
testcase_16 AC 348 ms
266,512 KB
testcase_17 WA -
testcase_18 AC 91 ms
84,224 KB
testcase_19 AC 89 ms
84,352 KB
testcase_20 AC 102 ms
84,736 KB
testcase_21 AC 91 ms
84,480 KB
testcase_22 AC 92 ms
84,736 KB
testcase_23 AC 91 ms
84,608 KB
testcase_24 AC 93 ms
84,608 KB
testcase_25 AC 90 ms
84,736 KB
testcase_26 AC 96 ms
86,656 KB
testcase_27 AC 96 ms
87,680 KB
testcase_28 AC 102 ms
93,440 KB
testcase_29 AC 109 ms
101,376 KB
testcase_30 AC 196 ms
168,544 KB
testcase_31 AC 252 ms
196,592 KB
testcase_32 AC 235 ms
183,748 KB
testcase_33 AC 160 ms
127,476 KB
testcase_34 AC 225 ms
182,212 KB
testcase_35 WA -
testcase_36 AC 207 ms
179,452 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 91 ms
84,352 KB
testcase_43 AC 88 ms
84,352 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+np)%2==1 or np==1:
    print('white')
else:
    print('black')
0