結果

問題 No.1581 Multiple Sequence
ユーザー yuusanlondonyuusanlondon
提出日時 2021-07-02 22:06:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 63,044 KB
最終ジャッジ日時 2024-06-29 11:38:42
合計ジャッジ時間 2,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,004 KB
testcase_01 AC 31 ms
52,316 KB
testcase_02 AC 45 ms
63,044 KB
testcase_03 AC 47 ms
62,472 KB
testcase_04 AC 42 ms
61,132 KB
testcase_05 AC 45 ms
62,180 KB
testcase_06 AC 43 ms
61,816 KB
testcase_07 AC 41 ms
62,180 KB
testcase_08 AC 42 ms
62,688 KB
testcase_09 AC 46 ms
62,460 KB
testcase_10 AC 48 ms
62,596 KB
testcase_11 AC 40 ms
62,220 KB
testcase_12 AC 44 ms
62,112 KB
testcase_13 AC 39 ms
61,692 KB
testcase_14 AC 46 ms
62,412 KB
testcase_15 AC 44 ms
62,680 KB
testcase_16 AC 45 ms
61,644 KB
testcase_17 AC 50 ms
62,528 KB
testcase_18 AC 43 ms
61,432 KB
testcase_19 AC 48 ms
62,104 KB
testcase_20 AC 50 ms
62,324 KB
testcase_21 AC 51 ms
62,288 KB
testcase_22 AC 48 ms
62,588 KB
testcase_23 AC 51 ms
63,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=10**9+7
m=int(input())
dp=[0]*(m+1)
dp2=[0]*(m+1)
dp[1]=1
for i in range(1,m):
  dp[i+1]=(dp[i]+dp2[i]+dp[i+1])%MOD
  curr=2
  while curr*i<m+1:
    dp2[curr*i]=(dp2[curr*i]+dp[i])%MOD
    curr+=1
print((dp[m]+dp2[m])%MOD)
0