結果
問題 | No.1665 quotient replace |
ユーザー | shinichi |
提出日時 | 2021-09-03 21:34:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,857 bytes |
コンパイル時間 | 508 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 272,944 KB |
最終ジャッジ日時 | 2024-12-15 10:41:10 |
合計ジャッジ時間 | 33,496 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 330 ms
93,584 KB |
testcase_01 | AC | 321 ms
94,084 KB |
testcase_02 | AC | 317 ms
94,684 KB |
testcase_03 | AC | 364 ms
100,320 KB |
testcase_04 | AC | 376 ms
99,768 KB |
testcase_05 | AC | 346 ms
97,284 KB |
testcase_06 | AC | 387 ms
100,976 KB |
testcase_07 | AC | 370 ms
100,700 KB |
testcase_08 | AC | 377 ms
101,000 KB |
testcase_09 | AC | 415 ms
103,164 KB |
testcase_10 | AC | 838 ms
152,856 KB |
testcase_11 | AC | 1,395 ms
209,864 KB |
testcase_12 | AC | 489 ms
112,164 KB |
testcase_13 | AC | 1,574 ms
272,608 KB |
testcase_14 | AC | 1,565 ms
272,888 KB |
testcase_15 | AC | 1,583 ms
272,816 KB |
testcase_16 | AC | 1,587 ms
272,064 KB |
testcase_17 | AC | 1,593 ms
272,944 KB |
testcase_18 | AC | 324 ms
93,856 KB |
testcase_19 | AC | 336 ms
93,952 KB |
testcase_20 | AC | 323 ms
93,620 KB |
testcase_21 | AC | 324 ms
93,424 KB |
testcase_22 | AC | 320 ms
94,660 KB |
testcase_23 | AC | 323 ms
93,472 KB |
testcase_24 | AC | 332 ms
94,568 KB |
testcase_25 | AC | 323 ms
94,800 KB |
testcase_26 | AC | 356 ms
100,424 KB |
testcase_27 | AC | 363 ms
100,540 KB |
testcase_28 | AC | 379 ms
103,616 KB |
testcase_29 | AC | 403 ms
109,176 KB |
testcase_30 | AC | 706 ms
189,872 KB |
testcase_31 | AC | 898 ms
223,496 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 | 320 ms
94,448 KB |
testcase_43 | AC | 329 ms
93,608 KB |
ソースコード
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 len(res) N = int(input()) A = list(map(int, input().split())) Nim = [0] * N era = Eratosthenes(10**6+10) for i in range(N): a = A[i] Nim[i] = era.divisors(a)-1 mex = 0 for n in Nim: mex ^= n if mex: print("white") else: print("black")