結果

問題 No.1665 quotient replace
ユーザー asumo0729asumo0729
提出日時 2021-09-03 21:48:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 898 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 318,724 KB
最終ジャッジ日時 2024-12-15 12:06:44
合計ジャッジ時間 80,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,648 KB
testcase_01 AC 39 ms
220,436 KB
testcase_02 AC 39 ms
60,552 KB
testcase_03 AC 62 ms
72,656 KB
testcase_04 AC 64 ms
72,232 KB
testcase_05 AC 45 ms
299,616 KB
testcase_06 AC 147 ms
83,604 KB
testcase_07 AC 77 ms
310,704 KB
testcase_08 AC 119 ms
83,512 KB
testcase_09 AC 362 ms
318,724 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 869 ms
95,132 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 38 ms
60,404 KB
testcase_19 AC 39 ms
231,056 KB
testcase_20 AC 39 ms
60,424 KB
testcase_21 AC 39 ms
215,736 KB
testcase_22 AC 38 ms
61,152 KB
testcase_23 AC 38 ms
227,508 KB
testcase_24 AC 39 ms
61,360 KB
testcase_25 AC 38 ms
213,628 KB
testcase_26 AC 72 ms
74,544 KB
testcase_27 AC 118 ms
260,808 KB
testcase_28 AC 360 ms
86,560 KB
testcase_29 AC 676 ms
231,108 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 2,717 ms
107,652 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 WA -
testcase_43 AC 39 ms
198,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
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)

N = ip()
A = lp()

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr

Nim = []
for get in A:
    now = factorization(get)
    x = 0
    for _, cnt in now:
        x += cnt
    Nim.append(x)

x = 0
for get in Nim:
    x ^= get

if not x:
    print("black")
else:
    print("white")
0