結果

問題 No.1665 quotient replace
ユーザー rlangevinrlangevin
提出日時 2023-02-17 08:54:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 3,000 ms
コード長 597 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 265,760 KB
最終ジャッジ日時 2024-07-19 05:19:29
合計ジャッジ時間 11,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 126 ms
85,888 KB
testcase_04 AC 125 ms
85,632 KB
testcase_05 AC 124 ms
85,504 KB
testcase_06 AC 124 ms
89,088 KB
testcase_07 AC 122 ms
87,424 KB
testcase_08 AC 121 ms
87,808 KB
testcase_09 AC 127 ms
93,568 KB
testcase_10 AC 204 ms
140,384 KB
testcase_11 AC 272 ms
183,312 KB
testcase_12 AC 140 ms
105,856 KB
testcase_13 AC 368 ms
265,484 KB
testcase_14 AC 363 ms
265,488 KB
testcase_15 AC 359 ms
265,616 KB
testcase_16 AC 362 ms
265,496 KB
testcase_17 AC 361 ms
265,760 KB
testcase_18 AC 86 ms
75,648 KB
testcase_19 AC 73 ms
70,144 KB
testcase_20 AC 89 ms
76,416 KB
testcase_21 AC 94 ms
77,568 KB
testcase_22 AC 103 ms
71,680 KB
testcase_23 AC 104 ms
81,280 KB
testcase_24 AC 85 ms
75,264 KB
testcase_25 AC 76 ms
71,680 KB
testcase_26 AC 120 ms
87,296 KB
testcase_27 AC 127 ms
88,448 KB
testcase_28 AC 129 ms
94,464 KB
testcase_29 AC 139 ms
102,144 KB
testcase_30 AC 231 ms
167,528 KB
testcase_31 AC 281 ms
195,596 KB
testcase_32 AC 270 ms
183,128 KB
testcase_33 AC 190 ms
126,932 KB
testcase_34 AC 262 ms
195,372 KB
testcase_35 AC 234 ms
168,392 KB
testcase_36 AC 259 ms
192,764 KB
testcase_37 AC 232 ms
167,228 KB
testcase_38 AC 273 ms
207,096 KB
testcase_39 AC 219 ms
156,840 KB
testcase_40 AC 219 ms
156,976 KB
testcase_41 AC 221 ms
156,976 KB
testcase_42 AC 40 ms
51,968 KB
testcase_43 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, ceil
def Sieve(n):
    lst = [True] * (n + 1)
    S = []
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.append(i)
    return S

N = int(input())
A = list(map(int, input().split()))
M = max(A)
D = [0] * (M + 1)

for p in Sieve(M):
    now = p
    while now <= M:
        for i in range(now, M + 1, now):
            D[i] += 1
        now *= p

ans = 0
for a in A:
    ans ^= D[a]

print("white") if ans else print("black")
0