結果

問題 No.1581 Multiple Sequence
ユーザー t98slidert98slider
提出日時 2024-06-30 05:20:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 4,516 ms
コンパイル使用メモリ 264,700 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-06-30 05:20:22
合計ジャッジ時間 5,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 45 ms
12,032 KB
testcase_03 AC 49 ms
12,800 KB
testcase_04 AC 15 ms
6,940 KB
testcase_05 AC 52 ms
13,184 KB
testcase_06 AC 24 ms
8,192 KB
testcase_07 AC 15 ms
6,940 KB
testcase_08 AC 20 ms
7,168 KB
testcase_09 AC 49 ms
12,288 KB
testcase_10 AC 31 ms
9,600 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 20 ms
7,552 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 51 ms
12,928 KB
testcase_15 AC 35 ms
10,624 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 59 ms
13,696 KB
testcase_18 AC 6 ms
6,944 KB
testcase_19 AC 42 ms
11,776 KB
testcase_20 AC 44 ms
12,160 KB
testcase_21 AC 67 ms
12,800 KB
testcase_22 AC 26 ms
9,216 KB
testcase_23 AC 55 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using mint=atcoder::modint1000000007;

int main(){
    int m;
    cin>>m;
    vector<vector<int>> t(m+1);
    vector<mint> dp(m+1);
    for(int i=1;i<=m;i++){
        for(int j=i;j<=m;j+=i){
            t[j].push_back(i);
        }
    }
    dp[0]=1;
    for(int i=1;i<=m;i++){
        for(auto d:t[i]){
            dp[i]+=dp[d-1];
        }
    }
    cout<<dp[m].val()<<endl;
}
0