結果

問題 No.1665 quotient replace
ユーザー titiatitia
提出日時 2021-09-03 21:47:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,666 ms / 3,000 ms
コード長 673 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 255,008 KB
最終ジャッジ日時 2024-05-09 03:12:45
合計ジャッジ時間 112,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,348 ms
92,368 KB
testcase_01 AC 2,378 ms
92,648 KB
testcase_02 AC 2,420 ms
92,392 KB
testcase_03 AC 2,449 ms
92,532 KB
testcase_04 AC 2,401 ms
92,272 KB
testcase_05 AC 2,379 ms
92,392 KB
testcase_06 AC 2,392 ms
92,676 KB
testcase_07 AC 2,320 ms
92,948 KB
testcase_08 AC 2,409 ms
92,856 KB
testcase_09 AC 2,418 ms
94,776 KB
testcase_10 AC 2,452 ms
138,804 KB
testcase_11 AC 2,457 ms
182,196 KB
testcase_12 AC 2,350 ms
103,284 KB
testcase_13 AC 2,553 ms
255,008 KB
testcase_14 AC 2,600 ms
254,216 KB
testcase_15 AC 2,666 ms
254,876 KB
testcase_16 AC 2,664 ms
254,744 KB
testcase_17 AC 2,575 ms
254,884 KB
testcase_18 AC 2,323 ms
92,408 KB
testcase_19 AC 2,351 ms
92,500 KB
testcase_20 AC 2,407 ms
92,400 KB
testcase_21 AC 2,595 ms
92,776 KB
testcase_22 AC 2,374 ms
92,528 KB
testcase_23 AC 2,397 ms
92,536 KB
testcase_24 AC 2,357 ms
92,512 KB
testcase_25 AC 2,400 ms
92,280 KB
testcase_26 AC 2,374 ms
92,904 KB
testcase_27 AC 2,430 ms
92,928 KB
testcase_28 AC 2,415 ms
95,488 KB
testcase_29 AC 2,400 ms
100,864 KB
testcase_30 AC 2,448 ms
173,856 KB
testcase_31 AC 2,484 ms
193,944 KB
testcase_32 AC 2,541 ms
181,772 KB
testcase_33 AC 2,502 ms
123,648 KB
testcase_34 AC 2,496 ms
190,056 KB
testcase_35 AC 2,489 ms
175,888 KB
testcase_36 AC 2,438 ms
188,496 KB
testcase_37 AC 2,425 ms
174,064 KB
testcase_38 AC 2,502 ms
202,360 KB
testcase_39 AC 2,486 ms
159,192 KB
testcase_40 AC 2,480 ms
159,508 KB
testcase_41 AC 2,467 ms
159,256 KB
testcase_42 AC 2,349 ms
92,244 KB
testcase_43 AC 2,303 ms
92,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
AX=list(map(int,input().split()))

Grundy=[-1]*(10**6+1)
Grundy[1]=0
A=[i for i in range(10**6+1)]

for i in range(2,10**6+1):
    if A[i]==i:
        for j in range(i,10**6+1,i):
            A[j]=i

def fac(x):
    L={1}
    while x!=1:
        L|={l*A[x] for l in L}
        x//=A[x]
    return L
        

for i in range(2,10**6+1):
    S=set()
    for f in fac(i):
        S.add(Grundy[f])

    for k in range(1000):
        if k in S:
            continue
        else:
            Grundy[i]=k
            break

XOR=0
for ax in AX:
    XOR^=Grundy[ax]

if XOR!=0:
    print("white")
else:
    print("black")
    
0