結果
問題 | No.1532 Different Products |
ユーザー | mkawa2 |
提出日時 | 2023-10-04 15:44:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 961 bytes |
コンパイル時間 | 198 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 530,292 KB |
最終ジャッジ日時 | 2024-07-26 14:45:43 |
合計ジャッジ時間 | 14,479 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 898 ms
134,316 KB |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | AC | 26 ms
10,752 KB |
testcase_04 | AC | 26 ms
10,624 KB |
testcase_05 | AC | 26 ms
10,752 KB |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 33 ms
11,520 KB |
testcase_08 | AC | 37 ms
12,588 KB |
testcase_09 | AC | 226 ms
40,604 KB |
testcase_10 | AC | 1,101 ms
142,300 KB |
testcase_11 | AC | 803 ms
133,688 KB |
testcase_12 | AC | 3,679 ms
317,480 KB |
testcase_13 | AC | 1,245 ms
154,108 KB |
testcase_14 | MLE | - |
testcase_15 | -- | - |
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 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
ソースコード
import sys sys.setrecursionlimit(200005) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = -1-(-1 << 31) inf = -1-(-1 << 63) md = 10**9+7 # md = 998244353 from functools import lru_cache @lru_cache(None) def f(n, k): if n == 1 or k == 1: return 2 res = f(n-1, k) if k >= n: res += f(n-1, k//n) return res n, k = LI() print(f(n, k)-1)