結果

問題 No.1581 Multiple Sequence
ユーザー 37zigen37zigen
提出日時 2021-07-03 17:52:35
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 65,296 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-06-30 10:02:30
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 85 ms
17,024 KB
testcase_03 AC 98 ms
18,176 KB
testcase_04 AC 22 ms
8,064 KB
testcase_05 AC 95 ms
18,688 KB
testcase_06 AC 36 ms
11,008 KB
testcase_07 AC 20 ms
7,680 KB
testcase_08 AC 28 ms
9,472 KB
testcase_09 AC 92 ms
17,408 KB
testcase_10 AC 51 ms
13,056 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 30 ms
9,856 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 79 ms
18,400 KB
testcase_15 AC 61 ms
14,592 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 110 ms
19,712 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 86 ms
16,512 KB
testcase_20 AC 84 ms
17,152 KB
testcase_21 AC 84 ms
18,288 KB
testcase_22 AC 41 ms
12,160 KB
testcase_23 AC 111 ms
20,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<list>
typedef long long ll;

using namespace std;
const ll p = (ll) 1e9+7;

int main() {
		ll M;
		cin >> M;
		
		vector<vector<ll>> ds(M+1,vector<ll>());
		for (int d=2;d<=M;++d) {
				for (int i=1;i*d<=M;++i) {
						ds[i*d].push_back(d);
				}
		}
		
		vector<ll> dp(M+1);
		vector<ll> s(M+1);
		s[0]=1;
		dp[0]=1;
		for (int i=1;i<=M;++i) {
				for (ll d : ds[i]) {
						dp[i]+=s[i/d-1];
						dp[i]%=p;
				}
				s[i]=(s[i-1]+dp[i])%p;
		}
		cout << s[M] << endl;
}
0