結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
53,392 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 73 ms
87,324 KB
testcase_29 WA -
testcase_30 AC 228 ms
165,708 KB
testcase_31 AC 293 ms
185,324 KB
testcase_32 AC 371 ms
174,492 KB
testcase_33 AC 189 ms
114,952 KB
testcase_34 AC 303 ms
182,760 KB
testcase_35 AC 353 ms
168,216 KB
testcase_36 AC 309 ms
180,316 KB
testcase_37 AC 290 ms
165,976 KB
testcase_38 AC 348 ms
194,960 KB
testcase_39 AC 265 ms
151,100 KB
testcase_40 AC 264 ms
151,184 KB
testcase_41 AC 270 ms
150,920 KB
testcase_42 AC 36 ms
52,960 KB
testcase_43 AC 36 ms
53,208 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