結果

問題 No.1665 quotient replace
ユーザー 👑 KazunKazun
提出日時 2021-09-04 04:21:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 842 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 254,620 KB
最終ジャッジ日時 2024-12-16 04:55:41
合計ジャッジ時間 10,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,680 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 72 ms
86,888 KB
testcase_29 WA -
testcase_30 AC 215 ms
165,856 KB
testcase_31 AC 294 ms
185,964 KB
testcase_32 AC 374 ms
174,380 KB
testcase_33 AC 187 ms
114,764 KB
testcase_34 AC 327 ms
182,232 KB
testcase_35 AC 298 ms
168,204 KB
testcase_36 AC 306 ms
180,504 KB
testcase_37 AC 291 ms
165,796 KB
testcase_38 AC 336 ms
194,532 KB
testcase_39 AC 252 ms
151,336 KB
testcase_40 AC 254 ms
150,892 KB
testcase_41 AC 257 ms
150,892 KB
testcase_42 AC 37 ms
53,108 KB
testcase_43 AC 35 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Smallest_Prime_Factor(N):
    """0,1,2,...,Nの最小の素因数のリスト(0,1については1にしている)
    """

    if N==0:
        return [1]

    N=abs(N)
    L=list(range(N+1))
    L[0]=L[1]=1

    x=4
    while x<=N:
        L[x]=2
        x+=2

    x=9
    while x<=N:
        if L[x]==x:
            L[x]=3
        x+=6

    x=5
    Flag=0
    while x*x<=N:
        if L[x]==x:
            y=x*x
            while y<=N:
                if L[y]==y:
                    L[y]=x
                y+=x<<1
        x+=2+2*Flag
        Flag^=1

    return L

def Grundy(x):
    g=0
    while x>1:
        x=x//L[x]
    return g
#==================================================
N=int(input())
A=list(map(int,input().split()))

L=Smallest_Prime_Factor(max(A))

G=0
for a in A:
    G^=Grundy(a)

print("white" if G else "black")
0