結果

問題 No.1665 quotient replace
ユーザー shinichishinichi
提出日時 2021-09-03 21:59:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,048 ms / 3,000 ms
コード長 1,615 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 272,920 KB
最終ジャッジ日時 2024-05-09 03:53:56
合計ジャッジ時間 23,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 250 ms
93,056 KB
testcase_01 AC 263 ms
93,184 KB
testcase_02 AC 247 ms
93,440 KB
testcase_03 AC 265 ms
97,280 KB
testcase_04 AC 273 ms
100,116 KB
testcase_05 AC 261 ms
93,568 KB
testcase_06 AC 291 ms
100,780 KB
testcase_07 AC 300 ms
100,864 KB
testcase_08 AC 279 ms
100,628 KB
testcase_09 AC 303 ms
103,064 KB
testcase_10 AC 527 ms
153,168 KB
testcase_11 AC 778 ms
209,336 KB
testcase_12 AC 342 ms
112,256 KB
testcase_13 AC 1,005 ms
272,148 KB
testcase_14 AC 1,030 ms
272,920 KB
testcase_15 AC 1,024 ms
272,920 KB
testcase_16 AC 1,047 ms
272,776 KB
testcase_17 AC 1,048 ms
272,180 KB
testcase_18 AC 254 ms
93,312 KB
testcase_19 AC 275 ms
93,312 KB
testcase_20 AC 283 ms
93,312 KB
testcase_21 AC 256 ms
93,312 KB
testcase_22 AC 282 ms
93,440 KB
testcase_23 AC 247 ms
93,676 KB
testcase_24 AC 265 ms
93,312 KB
testcase_25 AC 266 ms
93,440 KB
testcase_26 AC 291 ms
100,612 KB
testcase_27 AC 275 ms
100,708 KB
testcase_28 AC 292 ms
103,880 KB
testcase_29 AC 318 ms
109,312 KB
testcase_30 AC 530 ms
190,408 KB
testcase_31 AC 629 ms
223,388 KB
testcase_32 AC 799 ms
202,560 KB
testcase_33 AC 521 ms
133,744 KB
testcase_34 AC 717 ms
205,936 KB
testcase_35 AC 647 ms
192,168 KB
testcase_36 AC 699 ms
203,856 KB
testcase_37 AC 645 ms
189,936 KB
testcase_38 AC 698 ms
219,644 KB
testcase_39 AC 591 ms
173,596 KB
testcase_40 AC 589 ms
173,812 KB
testcase_41 AC 614 ms
173,780 KB
testcase_42 AC 280 ms
93,568 KB
testcase_43 AC 282 ms
93,824 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)
        cnt = 0
        while number != 1:
            factors[self.minfactor[number]] += 1
            cnt += 1
            number //= self.minfactor[number]
        return factors, cnt

    # 高速約数列挙
    def divisors(self, number):
        res = [1]
        factors, cnt = self.prime_factorize(number)
        return cnt

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] = era.divisors(a)

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

0