結果
問題 | No.314 ケンケンパ |
ユーザー |
![]() |
提出日時 | 2018-04-02 21:43:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 1,000 ms |
コード長 | 573 bytes |
コンパイル時間 | 731 ms |
コンパイル使用メモリ | 80,304 KB |
実行使用メモリ | 11,720 KB |
最終ジャッジ日時 | 2024-06-26 06:47:41 |
合計ジャッジ時間 | 1,508 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
// test// https://yukicoder.me/submissions/246985#include <iostream>#include <vector>#include <algorithm>#include <iterator>#include <array>#include <map>#include <stack>#include <queue>#include <set>using namespace std;int main() {long N;cin >> N;vector<long long> dp;constexpr unsigned long long m = 1e9 + 7;dp.push_back(0);dp.push_back(1);dp.push_back(2);dp.push_back(2);for (long i = 4; i <= N; ++i) {dp.push_back((dp[i - 2] + dp[i - 3]) % m);}cout << dp[N] << "\n";return 0;}