結果

問題 No.1665 quotient replace
ユーザー ntudantuda
提出日時 2021-09-04 13:09:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,059 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 272,936 KB
最終ジャッジ日時 2024-12-17 22:04:11
合計ジャッジ時間 49,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,344 KB
testcase_01 AC 39 ms
53,048 KB
testcase_02 AC 38 ms
52,888 KB
testcase_03 AC 903 ms
255,608 KB
testcase_04 AC 892 ms
255,932 KB
testcase_05 AC 890 ms
254,996 KB
testcase_06 AC 933 ms
257,916 KB
testcase_07 AC 910 ms
256,380 KB
testcase_08 AC 922 ms
256,888 KB
testcase_09 AC 966 ms
259,172 KB
testcase_10 AC 1,312 ms
259,920 KB
testcase_11 AC 1,763 ms
260,088 KB
testcase_12 AC 1,020 ms
259,372 KB
testcase_13 AC 2,111 ms
270,676 KB
testcase_14 AC 2,231 ms
271,100 KB
testcase_15 AC 2,041 ms
271,488 KB
testcase_16 AC 2,064 ms
270,420 KB
testcase_17 AC 2,023 ms
270,832 KB
testcase_18 AC 436 ms
180,608 KB
testcase_19 AC 247 ms
135,004 KB
testcase_20 AC 504 ms
194,480 KB
testcase_21 AC 545 ms
205,196 KB
testcase_22 AC 312 ms
149,948 KB
testcase_23 AC 699 ms
238,924 KB
testcase_24 AC 442 ms
180,684 KB
testcase_25 AC 305 ms
150,328 KB
testcase_26 AC 901 ms
257,460 KB
testcase_27 AC 902 ms
257,492 KB
testcase_28 AC 892 ms
258,956 KB
testcase_29 AC 902 ms
258,752 KB
testcase_30 AC 1,034 ms
268,268 KB
testcase_31 AC 1,110 ms
259,728 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 RE -
testcase_43 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def seachPrimeNum(N):
    max = int(N**0.5)
    seachList = [i for i in range(2,N+1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

def adic(dic,x):
    if x in dic:
        dic[x] += 1
    else:
        dic[x] = 1
    return

def factorization(x):
    dic = {}
    for p in PL:
        if x in PL:
            adic(dic,x)
            return dic
        while x % p == 0:
            adic(dic,p)
            x //= p
        if x == 1:
            return dic
    # ここには来ないはず
    print("factorization error")
    return "error"

# 約数の数
def N_divisors(x):
    dic = factorization(x)
    ret = 1
    for v in dic.values():
        ret *= (v+1)
    return ret

N = int(input())
A = list(map(int,input().split()))
PL = set(seachPrimeNum(max(A)))
G = 0
for i in range(N):
    G ^= (N_divisors(A[i]) - 1)

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

0