結果
問題 | No.847 Divisors of Power |
ユーザー | neko_the_shadow |
提出日時 | 2019-07-14 23:32:39 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 570 bytes |
コンパイル時間 | 148 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 189,568 KB |
最終ジャッジ日時 | 2024-10-07 02:00:06 |
合計ジャッジ時間 | 5,010 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
59,776 KB |
testcase_01 | AC | 49 ms
55,168 KB |
testcase_02 | AC | 47 ms
55,808 KB |
testcase_03 | AC | 82 ms
77,568 KB |
testcase_04 | AC | 216 ms
98,620 KB |
testcase_05 | WA | - |
testcase_06 | AC | 49 ms
60,916 KB |
testcase_07 | AC | 49 ms
60,288 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 51 ms
62,208 KB |
testcase_13 | AC | 105 ms
77,856 KB |
testcase_14 | AC | 96 ms
77,696 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
import math, collections, functools n, k, m = map(int, input().split()) d = collections.defaultdict(int) for i in range(2, math.ceil(math.sqrt(n)) + 1): while n % i == 0: d[i] += 1 n //= i if n > 1: d[n] += 1 p = list(sorted(d.keys())) # 素数 q = [d[i] * k for i in p] # 指数 # x: 添え字 # y: 合計 @functools.lru_cache(maxsize=None) def f(x, y): if m <= y: return 0 if x == len(p): return 1 t = 0 for i in range(q[x] + 1): t += f(x + 1, y * (p[x] ** i)) return t print(f(0, 1))