結果

問題 No.1581 Multiple Sequence
ユーザー SSRSSSRS
提出日時 2021-03-06 17:31:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 65,196 KB
最終ジャッジ日時 2024-06-29 04:31:44
合計ジャッジ時間 2,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,728 KB
testcase_01 AC 39 ms
52,332 KB
testcase_02 AC 51 ms
63,976 KB
testcase_03 AC 52 ms
63,836 KB
testcase_04 AC 45 ms
61,900 KB
testcase_05 AC 52 ms
64,404 KB
testcase_06 AC 48 ms
61,792 KB
testcase_07 AC 46 ms
60,808 KB
testcase_08 AC 46 ms
61,760 KB
testcase_09 AC 51 ms
65,164 KB
testcase_10 AC 48 ms
62,296 KB
testcase_11 AC 44 ms
61,504 KB
testcase_12 AC 46 ms
62,148 KB
testcase_13 AC 43 ms
61,060 KB
testcase_14 AC 51 ms
63,932 KB
testcase_15 AC 48 ms
63,724 KB
testcase_16 AC 44 ms
60,812 KB
testcase_17 AC 50 ms
65,196 KB
testcase_18 AC 43 ms
59,956 KB
testcase_19 AC 50 ms
63,424 KB
testcase_20 AC 50 ms
63,796 KB
testcase_21 AC 50 ms
63,452 KB
testcase_22 AC 47 ms
63,408 KB
testcase_23 AC 50 ms
64,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 1000000007
M = int(input())
dp = [0] * (M + 1)
dp[0] = 1
for i in range(M):
  for j in range(i + 1, M + 1, i + 1):
    dp[j] = (dp[j] + dp[i]) % MOD
print(dp[M])
0