結果
問題 | No.1581 Multiple Sequence |
ユーザー | kotatsugame |
提出日時 | 2021-07-02 21:43:18 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 269 bytes |
コンパイル時間 | 516 ms |
コンパイル使用メモリ | 67,080 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 11:13:57 |
合計ジャッジ時間 | 1,132 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 7 | main() | ^~~~
ソースコード
#include<iostream> #include<atcoder/modint> using namespace std; using mint=atcoder::modint1000000007; int M; mint dp[1<<17]; main() { cin>>M; for(int i=1;i<=M;i++) { dp[i]++; for(int j=1;i*j+j<=M;j++) { dp[i*j+j]+=dp[i]; } } cout<<dp[M].val()<<endl; }