結果

問題 No.1665 quotient replace
ユーザー 👑 KazunKazun
提出日時 2021-09-04 04:21:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 472 ms / 3,000 ms
コード長 855 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 253,288 KB
最終ジャッジ日時 2024-05-09 14:45:59
合計ジャッジ時間 10,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,840 KB
testcase_01 AC 31 ms
51,200 KB
testcase_02 AC 31 ms
51,712 KB
testcase_03 AC 52 ms
68,736 KB
testcase_04 AC 54 ms
69,120 KB
testcase_05 AC 51 ms
67,584 KB
testcase_06 AC 63 ms
76,288 KB
testcase_07 AC 59 ms
70,784 KB
testcase_08 AC 61 ms
72,832 KB
testcase_09 AC 77 ms
86,528 KB
testcase_10 AC 201 ms
129,732 KB
testcase_11 AC 347 ms
175,100 KB
testcase_12 AC 98 ms
95,104 KB
testcase_13 AC 463 ms
253,152 KB
testcase_14 AC 468 ms
252,516 KB
testcase_15 AC 469 ms
253,284 KB
testcase_16 AC 469 ms
252,772 KB
testcase_17 AC 472 ms
253,288 KB
testcase_18 AC 46 ms
63,744 KB
testcase_19 AC 43 ms
61,952 KB
testcase_20 AC 45 ms
64,128 KB
testcase_21 AC 46 ms
64,768 KB
testcase_22 AC 43 ms
62,592 KB
testcase_23 AC 48 ms
65,408 KB
testcase_24 AC 44 ms
63,104 KB
testcase_25 AC 43 ms
62,720 KB
testcase_26 AC 58 ms
70,656 KB
testcase_27 AC 61 ms
74,368 KB
testcase_28 AC 74 ms
86,912 KB
testcase_29 AC 83 ms
92,032 KB
testcase_30 AC 210 ms
165,312 KB
testcase_31 AC 272 ms
185,064 KB
testcase_32 AC 341 ms
174,580 KB
testcase_33 AC 175 ms
114,992 KB
testcase_34 AC 293 ms
182,908 KB
testcase_35 AC 271 ms
167,576 KB
testcase_36 AC 286 ms
180,308 KB
testcase_37 AC 268 ms
165,280 KB
testcase_38 AC 311 ms
195,148 KB
testcase_39 AC 238 ms
150,892 KB
testcase_40 AC 240 ms
151,048 KB
testcase_41 AC 238 ms
151,304 KB
testcase_42 AC 34 ms
51,584 KB
testcase_43 AC 31 ms
51,968 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]
        g+=1
    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