結果
問題 | No.1973 Divisor Sequence |
ユーザー | rlangevin |
提出日時 | 2022-08-25 22:50:24 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 622 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,572 KB |
実行使用メモリ | 83,356 KB |
最終ジャッジ日時 | 2024-10-13 03:45:27 |
合計ジャッジ時間 | 3,851 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
58,880 KB |
testcase_01 | AC | 38 ms
53,632 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
from collections import defaultdict def div(n): S = set() i = 1 while i * i <= n: if n % i == 0: S.add(i) S.add(n // i) i += 1 return sorted(list(S)) N, M = map(int, input().split()) mod = 10 ** 9 + 7 L = div(M) pre = defaultdict(int) pre[1] = 1 for i in range(N): dp = defaultdict(int) for k in L: c = pre[k] % mod for nk in L: if k * nk > M: break if (M // k) % nk == 0: dp[nk] += c pre, dp = dp, pre ans = 0 for k, v in pre.items(): ans += v % mod print(ans % mod)