結果
問題 | No.1581 Multiple Sequence |
ユーザー | magsta |
提出日時 | 2021-03-05 19:14:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 664 bytes |
コンパイル時間 | 766 ms |
コンパイル使用メモリ | 87,312 KB |
実行使用メモリ | 697,788 KB |
最終ジャッジ日時 | 2024-06-29 04:28:17 |
合計ジャッジ時間 | 6,463 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#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[1000000]; for (int i = 0; i < 1000000; i++) dp[i] = 0; queue<long long> Que[1000000]; 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 <= 1000000) { Que[n - 1].push(i + 1); n += i + 1; } dp[i] %= MOD; } cout << dp[M - 1] << endl; }