結果

問題 No.1665 quotient replace
ユーザー asumo0729asumo0729
提出日時 2021-09-14 16:57:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 476 ms / 3,000 ms
コード長 748 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 250,844 KB
最終ジャッジ日時 2024-06-27 07:26:18
合計ジャッジ時間 10,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
74,376 KB
testcase_01 AC 81 ms
73,752 KB
testcase_02 AC 80 ms
74,308 KB
testcase_03 AC 84 ms
75,108 KB
testcase_04 AC 86 ms
76,252 KB
testcase_05 AC 80 ms
74,304 KB
testcase_06 AC 89 ms
77,780 KB
testcase_07 AC 86 ms
75,720 KB
testcase_08 AC 87 ms
77,756 KB
testcase_09 AC 93 ms
83,024 KB
testcase_10 AC 208 ms
130,280 KB
testcase_11 AC 362 ms
179,444 KB
testcase_12 AC 114 ms
93,828 KB
testcase_13 AC 476 ms
250,688 KB
testcase_14 AC 476 ms
250,404 KB
testcase_15 AC 445 ms
250,412 KB
testcase_16 AC 461 ms
250,604 KB
testcase_17 AC 469 ms
250,844 KB
testcase_18 AC 80 ms
74,940 KB
testcase_19 AC 80 ms
73,628 KB
testcase_20 AC 83 ms
73,284 KB
testcase_21 AC 79 ms
74,220 KB
testcase_22 AC 82 ms
74,956 KB
testcase_23 AC 83 ms
73,464 KB
testcase_24 AC 84 ms
73,628 KB
testcase_25 AC 80 ms
74,556 KB
testcase_26 AC 86 ms
76,136 KB
testcase_27 AC 88 ms
77,824 KB
testcase_28 AC 91 ms
83,740 KB
testcase_29 AC 104 ms
90,176 KB
testcase_30 AC 191 ms
158,320 KB
testcase_31 AC 264 ms
191,860 KB
testcase_32 AC 343 ms
174,236 KB
testcase_33 AC 193 ms
118,432 KB
testcase_34 AC 293 ms
187,104 KB
testcase_35 AC 265 ms
173,800 KB
testcase_36 AC 305 ms
185,032 KB
testcase_37 AC 255 ms
158,184 KB
testcase_38 AC 309 ms
200,260 KB
testcase_39 AC 232 ms
147,440 KB
testcase_40 AC 237 ms
147,540 KB
testcase_41 AC 231 ms
146,984 KB
testcase_42 AC 82 ms
74,464 KB
testcase_43 AC 80 ms
74,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
import bisect
stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
eps = 1e-9
sortkey = itemgetter(0)

Max = 10 ** 6 + 10
N = ip()
A = lp()

spf = [0 for _ in range(Max)]

for i in range(2, Max):
    if spf[i] != 0:
        continue
    for j in range(i, Max, i):
        spf[j] = i

Xor = 0
for get in A:
    res = 0
    while get != 1:
        now = spf[get]
        res += 1
        get //= now
    Xor ^= res

if Xor:
    print("white")
else:
    print("black")
0