結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 75 ms
17,024 KB
testcase_03 AC 79 ms
18,176 KB
testcase_04 AC 20 ms
8,064 KB
testcase_05 AC 97 ms
18,816 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 19 ms
7,680 KB
testcase_08 AC 29 ms
9,216 KB
testcase_09 AC 79 ms
17,536 KB
testcase_10 AC 49 ms
13,184 KB
testcase_11 AC 12 ms
6,944 KB
testcase_12 AC 33 ms
9,728 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 110 ms
18,304 KB
testcase_15 AC 70 ms
14,464 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 119 ms
19,584 KB
testcase_18 AC 9 ms
6,944 KB
testcase_19 AC 86 ms
16,640 KB
testcase_20 AC 77 ms
17,024 KB
testcase_21 AC 86 ms
18,432 KB
testcase_22 AC 41 ms
12,288 KB
testcase_23 AC 106 ms
20,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:13:40: warning: narrowing conversion of ‘(M + 1)’ from ‘ll’ {aka ‘long long int’} to ‘std::vector<std::vector<long long int> >::size_type’ {aka ‘long unsigned int’} [-Wnarrowing]
   13 |                 vector<vector<ll>> ds{M+1};
      |                                       ~^~

ソースコード

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};
		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