結果

問題 No.1665 quotient replace
ユーザー shinichishinichi
提出日時 2021-09-03 21:41:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,859 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 272,360 KB
最終ジャッジ日時 2024-12-15 11:26:59
合計ジャッジ時間 34,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
93,056 KB
testcase_01 AC 338 ms
92,800 KB
testcase_02 AC 333 ms
93,184 KB
testcase_03 AC 368 ms
100,096 KB
testcase_04 AC 379 ms
100,096 KB
testcase_05 AC 346 ms
97,024 KB
testcase_06 AC 402 ms
100,864 KB
testcase_07 AC 379 ms
100,480 KB
testcase_08 AC 390 ms
100,736 KB
testcase_09 AC 426 ms
103,040 KB
testcase_10 AC 884 ms
152,616 KB
testcase_11 AC 1,447 ms
209,100 KB
testcase_12 AC 505 ms
112,256 KB
testcase_13 AC 1,673 ms
272,096 KB
testcase_14 AC 1,624 ms
271,840 KB
testcase_15 AC 1,671 ms
271,844 KB
testcase_16 AC 1,673 ms
272,360 KB
testcase_17 AC 1,678 ms
272,356 KB
testcase_18 AC 340 ms
93,312 KB
testcase_19 AC 337 ms
93,312 KB
testcase_20 AC 334 ms
93,056 KB
testcase_21 AC 339 ms
93,312 KB
testcase_22 AC 340 ms
93,184 KB
testcase_23 AC 340 ms
93,312 KB
testcase_24 AC 340 ms
93,056 KB
testcase_25 AC 338 ms
93,184 KB
testcase_26 AC 368 ms
100,352 KB
testcase_27 AC 391 ms
100,480 KB
testcase_28 AC 411 ms
103,936 KB
testcase_29 AC 415 ms
109,184 KB
testcase_30 AC 730 ms
189,676 KB
testcase_31 AC 929 ms
223,648 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 AC 356 ms
93,184 KB
testcase_43 AC 344 ms
92,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


class Eratosthenes():
    def __init__(self, size):
        self.size = size
        self.isprime = [True] * size
        self.minfactor = [-1] * size
        self.mobius = [1] * size
        self.isprime[1] = False
        self.minfactor[1] = 1
        self.eratosthenes()

    # 初めに篩にかけて,minfactorとisprimeを生成
    def eratosthenes(self):
        for p in range(2, self.size):
            if not self.isprime[p]:
                continue
            self.minfactor[p] = p
            self.mobius[p] = -1
            for q in range(p+p, self.size, p):
                self.isprime[q] = False
                if self.minfactor[q] == -1:
                    self.minfactor[q] = p
                if (q//p) % p == 0:
                    self.mobius[q] = 0
                else:
                    self.mobius[q] = -self.mobius[q]

    # 高速素因数分解
    def prime_factorize(self, number):
        assert 1 <= number <= self.size
        factors = defaultdict(int)
        while number != 1:
            factors[self.minfactor[number]] += 1
            number //= self.minfactor[number]
        return factors

    # 高速約数列挙
    def divisors(self, number):
        res = [1]
        factors = self.prime_factorize(number)
        for p, cnt in factors.items():
            # 追加前の大きさを保存
            res_size = len(res)
            for i in range(res_size):
                pp = 1
                for j in range(cnt):
                    pp *= p
                    res.append(res[i]*pp)
        return res

N = int(input())
A = list(map(int, input().split()))
Nim = [0] * N
era = Eratosthenes(10**6+1000)
for i in range(N):
    a = A[i]
    Nim[i] = len(era.divisors(a))-1

mex = 0
for n in Nim:
    mex ^= n
if mex:
    print("white")
else:
    print("black")

0