結果

問題 No.1665 quotient replace
ユーザー asumo0729asumo0729
提出日時 2021-09-03 22:27:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 833 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,952 KB
実行使用メモリ 319,680 KB
最終ジャッジ日時 2024-12-15 14:46:09
合計ジャッジ時間 80,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,364 KB
testcase_01 AC 41 ms
219,416 KB
testcase_02 AC 42 ms
61,572 KB
testcase_03 AC 55 ms
301,452 KB
testcase_04 AC 57 ms
68,672 KB
testcase_05 AC 48 ms
300,888 KB
testcase_06 AC 144 ms
83,856 KB
testcase_07 AC 73 ms
307,780 KB
testcase_08 AC 106 ms
79,076 KB
testcase_09 AC 359 ms
319,680 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 867 ms
94,908 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 40 ms
60,296 KB
testcase_19 AC 38 ms
229,520 KB
testcase_20 AC 38 ms
60,448 KB
testcase_21 AC 39 ms
216,272 KB
testcase_22 AC 38 ms
60,260 KB
testcase_23 AC 39 ms
227,288 KB
testcase_24 AC 39 ms
60,380 KB
testcase_25 AC 39 ms
212,888 KB
testcase_26 AC 71 ms
72,444 KB
testcase_27 AC 116 ms
259,348 KB
testcase_28 AC 355 ms
86,332 KB
testcase_29 AC 678 ms
229,164 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 2,645 ms
107,584 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 38 ms
197,192 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):
    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
            
            res += cnt

    if temp!=1:
        res += 1

    if res==0:
        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