結果

問題 No.1665 quotient replace
ユーザー rlangevinrlangevin
提出日時 2023-02-17 08:55:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 3,000 ms
コード長 597 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 271,104 KB
最終ジャッジ日時 2024-07-19 05:20:03
合計ジャッジ時間 9,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 117 ms
92,800 KB
testcase_04 AC 120 ms
92,800 KB
testcase_05 AC 113 ms
92,800 KB
testcase_06 AC 123 ms
95,872 KB
testcase_07 AC 120 ms
94,208 KB
testcase_08 AC 118 ms
94,720 KB
testcase_09 AC 127 ms
100,480 KB
testcase_10 AC 194 ms
147,304 KB
testcase_11 AC 259 ms
189,676 KB
testcase_12 AC 141 ms
112,640 KB
testcase_13 AC 360 ms
271,104 KB
testcase_14 AC 361 ms
270,988 KB
testcase_15 AC 370 ms
270,348 KB
testcase_16 AC 359 ms
270,480 KB
testcase_17 AC 356 ms
270,948 KB
testcase_18 AC 89 ms
80,328 KB
testcase_19 AC 72 ms
72,576 KB
testcase_20 AC 89 ms
81,152 KB
testcase_21 AC 93 ms
82,816 KB
testcase_22 AC 88 ms
74,368 KB
testcase_23 AC 104 ms
86,656 KB
testcase_24 AC 88 ms
80,256 KB
testcase_25 AC 75 ms
74,112 KB
testcase_26 AC 122 ms
94,336 KB
testcase_27 AC 128 ms
95,616 KB
testcase_28 AC 133 ms
101,120 KB
testcase_29 AC 135 ms
109,056 KB
testcase_30 AC 228 ms
173,920 KB
testcase_31 AC 276 ms
202,640 KB
testcase_32 AC 265 ms
189,024 KB
testcase_33 AC 206 ms
133,712 KB
testcase_34 AC 260 ms
201,644 KB
testcase_35 AC 227 ms
175,296 KB
testcase_36 AC 255 ms
199,428 KB
testcase_37 AC 223 ms
174,144 KB
testcase_38 AC 259 ms
213,620 KB
testcase_39 AC 217 ms
164,272 KB
testcase_40 AC 217 ms
163,752 KB
testcase_41 AC 213 ms
163,760 KB
testcase_42 AC 36 ms
51,968 KB
testcase_43 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, ceil
def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    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.add(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