結果

問題 No.1665 quotient replace
ユーザー asumo0729asumo0729
提出日時 2021-09-03 22:25:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 924 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,628 KB
実行使用メモリ 318,664 KB
最終ジャッジ日時 2024-12-15 14:31:37
合計ジャッジ時間 79,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,732 KB
testcase_01 AC 34 ms
220,616 KB
testcase_02 AC 36 ms
60,084 KB
testcase_03 AC 50 ms
303,124 KB
testcase_04 AC 55 ms
70,540 KB
testcase_05 AC 43 ms
300,128 KB
testcase_06 AC 136 ms
83,740 KB
testcase_07 AC 67 ms
309,136 KB
testcase_08 AC 105 ms
83,436 KB
testcase_09 AC 336 ms
318,664 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 796 ms
94,984 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 35 ms
60,520 KB
testcase_19 AC 37 ms
229,292 KB
testcase_20 AC 35 ms
60,020 KB
testcase_21 AC 34 ms
215,728 KB
testcase_22 AC 35 ms
60,196 KB
testcase_23 AC 35 ms
226,944 KB
testcase_24 AC 40 ms
60,984 KB
testcase_25 AC 40 ms
213,968 KB
testcase_26 AC 74 ms
72,668 KB
testcase_27 AC 105 ms
73,036 KB
testcase_28 AC 330 ms
79,572 KB
testcase_29 AC 638 ms
85,432 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 2,488 ms
109,588 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 36 ms
200,024 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
    res = 0
    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])
            res += cnt

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

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

    return res

Nim = []
for get in A:
    res = factorization(get)
    
    Nim.append(res)

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

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