結果

問題 No.1581 Multiple Sequence
ユーザー atcoder8atcoder8
提出日時 2023-03-31 22:04:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 66,816 KB
最終ジャッジ日時 2024-09-23 00:45:47
合計ジャッジ時間 2,328 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,228 KB
testcase_01 AC 36 ms
53,220 KB
testcase_02 AC 51 ms
64,180 KB
testcase_03 AC 52 ms
65,592 KB
testcase_04 AC 46 ms
62,008 KB
testcase_05 AC 53 ms
64,872 KB
testcase_06 AC 48 ms
63,184 KB
testcase_07 AC 46 ms
61,632 KB
testcase_08 AC 47 ms
62,452 KB
testcase_09 AC 51 ms
64,792 KB
testcase_10 AC 50 ms
63,812 KB
testcase_11 AC 45 ms
61,420 KB
testcase_12 AC 47 ms
63,036 KB
testcase_13 AC 44 ms
60,392 KB
testcase_14 AC 52 ms
66,392 KB
testcase_15 AC 50 ms
63,752 KB
testcase_16 AC 46 ms
62,112 KB
testcase_17 AC 55 ms
66,816 KB
testcase_18 AC 45 ms
60,636 KB
testcase_19 AC 51 ms
65,308 KB
testcase_20 AC 52 ms
64,712 KB
testcase_21 AC 52 ms
65,308 KB
testcase_22 AC 48 ms
62,832 KB
testcase_23 AC 53 ms
65,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())

dp = [0] * (m + 1)
dp[0] = 1

for i in range(0, m):
    for j in range(1, m // (i + 1) + 1):
        dp[(i + 1) * j] = (dp[(i + 1) * j] + dp[i]) % (10**9 + 7)

print(dp[m])
0