結果

問題 No.1665 quotient replace
ユーザー gr1msl3ygr1msl3y
提出日時 2021-09-03 22:01:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 3,000 ms
コード長 387 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 255,372 KB
最終ジャッジ日時 2024-05-09 03:56:19
合計ジャッジ時間 8,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,080 KB
testcase_01 AC 34 ms
52,832 KB
testcase_02 AC 34 ms
52,272 KB
testcase_03 AC 72 ms
74,280 KB
testcase_04 AC 76 ms
73,792 KB
testcase_05 AC 70 ms
71,780 KB
testcase_06 AC 76 ms
76,208 KB
testcase_07 AC 74 ms
73,600 KB
testcase_08 AC 77 ms
74,664 KB
testcase_09 AC 82 ms
81,420 KB
testcase_10 AC 174 ms
128,256 KB
testcase_11 AC 270 ms
175,096 KB
testcase_12 AC 95 ms
92,800 KB
testcase_13 AC 338 ms
253,620 KB
testcase_14 AC 338 ms
253,976 KB
testcase_15 AC 347 ms
255,372 KB
testcase_16 AC 338 ms
254,048 KB
testcase_17 AC 334 ms
253,508 KB
testcase_18 AC 57 ms
67,196 KB
testcase_19 AC 52 ms
65,232 KB
testcase_20 AC 58 ms
68,088 KB
testcase_21 AC 59 ms
68,828 KB
testcase_22 AC 55 ms
66,428 KB
testcase_23 AC 66 ms
70,364 KB
testcase_24 AC 62 ms
66,740 KB
testcase_25 AC 55 ms
65,892 KB
testcase_26 AC 76 ms
73,536 KB
testcase_27 AC 76 ms
75,940 KB
testcase_28 AC 78 ms
80,744 KB
testcase_29 AC 87 ms
88,948 KB
testcase_30 AC 171 ms
155,088 KB
testcase_31 AC 213 ms
185,536 KB
testcase_32 AC 262 ms
174,340 KB
testcase_33 AC 162 ms
114,444 KB
testcase_34 AC 242 ms
181,496 KB
testcase_35 AC 220 ms
156,240 KB
testcase_36 AC 225 ms
166,404 KB
testcase_37 AC 207 ms
155,100 KB
testcase_38 AC 251 ms
194,744 KB
testcase_39 AC 190 ms
144,640 KB
testcase_40 AC 198 ms
145,068 KB
testcase_41 AC 189 ms
144,772 KB
testcase_42 AC 37 ms
52,236 KB
testcase_43 AC 37 ms
53,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
M = max(A)

fact = [0]*(M+1)

for i in range(2, M+1):
    if fact[i]:
        continue
    fact[i] = 1
    for j in range(i*i, M+1, i):
        if not fact[j]:
            fact[j] = j//i

v = 0
for a in A:
    ct = 0
    ind = a
    while ind > 1:
        ind = fact[ind]
        ct += 1
    v ^= ct

print('white' if v else 'black')
0