結果

問題 No.1581 Multiple Sequence
ユーザー magstamagsta
提出日時 2021-03-05 19:26:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 87,560 KB
実行使用メモリ 71,664 KB
最終ジャッジ日時 2024-06-29 04:28:06
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 138 ms
60,056 KB
testcase_03 AC 144 ms
64,504 KB
testcase_04 AC 38 ms
24,448 KB
testcase_05 AC 161 ms
66,816 KB
testcase_06 AC 65 ms
35,960 KB
testcase_07 AC 35 ms
23,424 KB
testcase_08 AC 48 ms
29,568 KB
testcase_09 AC 150 ms
61,736 KB
testcase_10 AC 92 ms
44,672 KB
testcase_11 AC 18 ms
14,720 KB
testcase_12 AC 56 ms
31,616 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 159 ms
64,896 KB
testcase_15 AC 109 ms
50,228 KB
testcase_16 AC 21 ms
17,152 KB
testcase_17 AC 182 ms
70,144 KB
testcase_18 AC 15 ms
12,928 KB
testcase_19 AC 131 ms
58,368 KB
testcase_20 AC 130 ms
60,288 KB
testcase_21 AC 147 ms
64,256 KB
testcase_22 AC 79 ms
41,316 KB
testcase_23 AC 168 ms
71,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <utility>
#include <cmath>
#include <cstdlib>
#include <map>
#include <set>
#include <queue>
#include <vector>
using namespace std;
#define MOD 1000000007

int main() {
	long long M; cin >> M;
	long long dp[M];
	for (int i = 0; i < M; i++) dp[i] = 0;
	queue<long long> Que[M];
	for (int i = 0; i < M; i++) {
		dp[i] = 1;
		while (!Que[i].empty()) {
			long long a = Que[i].front();
			Que[i].pop();
			dp[i] += dp[(i + 1) / a - 2];
		}
		long long n = i + 1;
		while (n <= M) {
			Que[n - 1].push(i + 1);
			n += i + 1;
		}
		dp[i] %= MOD;
	}
	cout << dp[M - 1] << endl;
}
0