結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,692 KB
testcase_01 AC 36 ms
53,268 KB
testcase_02 AC 35 ms
53,108 KB
testcase_03 AC 54 ms
69,504 KB
testcase_04 AC 62 ms
69,688 KB
testcase_05 AC 61 ms
68,204 KB
testcase_06 AC 65 ms
76,488 KB
testcase_07 AC 61 ms
71,112 KB
testcase_08 AC 62 ms
74,752 KB
testcase_09 AC 77 ms
87,064 KB
testcase_10 AC 239 ms
129,548 KB
testcase_11 AC 389 ms
175,316 KB
testcase_12 AC 101 ms
95,844 KB
testcase_13 AC 508 ms
253,324 KB
testcase_14 AC 508 ms
253,288 KB
testcase_15 AC 512 ms
253,548 KB
testcase_16 AC 502 ms
253,288 KB
testcase_17 AC 504 ms
253,172 KB
testcase_18 AC 48 ms
65,148 KB
testcase_19 AC 47 ms
62,544 KB
testcase_20 AC 50 ms
65,304 KB
testcase_21 AC 50 ms
65,316 KB
testcase_22 AC 48 ms
63,784 KB
testcase_23 AC 48 ms
65,904 KB
testcase_24 AC 49 ms
63,876 KB
testcase_25 AC 51 ms
63,788 KB
testcase_26 AC 63 ms
71,544 KB
testcase_27 AC 64 ms
74,740 KB
testcase_28 AC 73 ms
87,156 KB
testcase_29 AC 85 ms
92,544 KB
testcase_30 AC 219 ms
166,132 KB
testcase_31 AC 293 ms
185,360 KB
testcase_32 AC 379 ms
174,784 KB
testcase_33 AC 198 ms
114,684 KB
testcase_34 AC 320 ms
182,472 KB
testcase_35 AC 290 ms
168,504 KB
testcase_36 AC 314 ms
180,396 KB
testcase_37 AC 299 ms
165,900 KB
testcase_38 AC 329 ms
194,872 KB
testcase_39 AC 271 ms
150,804 KB
testcase_40 AC 267 ms
151,116 KB
testcase_41 AC 265 ms
150,692 KB
testcase_42 AC 38 ms
54,400 KB
testcase_43 AC 37 ms
52,264 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