結果
問題 | No.1946 ロッカーの問題 |
ユーザー | hir355 |
提出日時 | 2022-05-20 21:49:55 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 194 ms / 3,000 ms |
コード長 | 1,312 bytes |
コンパイル時間 | 207 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 111,104 KB |
最終ジャッジ日時 | 2024-09-20 07:52:17 |
合計ジャッジ時間 | 2,895 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
60,328 KB |
testcase_01 | AC | 43 ms
60,416 KB |
testcase_02 | AC | 187 ms
80,872 KB |
testcase_03 | AC | 151 ms
111,104 KB |
testcase_04 | AC | 194 ms
81,024 KB |
testcase_05 | AC | 158 ms
80,256 KB |
testcase_06 | AC | 173 ms
80,768 KB |
testcase_07 | AC | 151 ms
79,836 KB |
testcase_08 | AC | 101 ms
87,808 KB |
testcase_09 | AC | 136 ms
107,136 KB |
testcase_10 | AC | 132 ms
103,424 KB |
testcase_11 | AC | 74 ms
78,640 KB |
testcase_12 | AC | 110 ms
80,512 KB |
testcase_13 | AC | 44 ms
60,664 KB |
testcase_14 | AC | 45 ms
60,928 KB |
testcase_15 | AC | 86 ms
78,008 KB |
testcase_16 | AC | 45 ms
60,544 KB |
testcase_17 | AC | 62 ms
79,104 KB |
testcase_18 | AC | 78 ms
96,384 KB |
ソースコード
class osa_k: min_factor = [] def __init__(self, n): self.min_factor = list(range(n + 1)) i = 2 while i * i <= n: if self.min_factor[i] < i: i += 1 continue for j in range(i*i, n + 1, i): if self.min_factor[j] == j: self.min_factor[j] = i i += 1 def factor(self, n): res = [] while n > 1: res.append(self.min_factor[n]) n //= self.min_factor[n] return res def divisors(self, n): res = [1] while n > 1: x = self.min_factor[n] cnt = 0 while n % x == 0: cnt += 1 n //= x t = [] p = 1 for i in range(cnt + 1): for j in range(len(res)): t.append(res[j] * p) p *= x res = t[:] return res osk = osa_k(200000) n, m = map(int, input().split()) d = [0] * (n + 1) d2 = [0] * (n + 1) a = list(map(int, input().split())) for x in a: d2[x] = 1 for i in range(1, n + 1): d[i] = (n // i) % 2 ans = 0 for i in range(n, 0, -1): if d[i] != d2[i]: ans += 1 for dv in osk.divisors(i): d[dv] ^= 1 print(ans)