結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
newlife171128
|
| 提出日時 | 2018-01-27 23:11:14 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 1,000 ms |
| コード長 | 602 bytes |
| コンパイル時間 | 1,650 ms |
| コンパイル使用メモリ | 160,468 KB |
| 実行使用メモリ | 11,600 KB |
| 最終ジャッジ日時 | 2024-12-29 07:07:13 |
| 合計ジャッジ時間 | 2,191 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <bits/stdc++.h>
#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <string>
#include <sstream>
#include <cmath>
#include <stack>
#include <queue>
#include <cctype>
#include <stdio.h>
#include <map>
#include <string.h>
#include <utility>
typedef long long ll;
using namespace std;
typedef pair<int, int> P;
int main() {
unsigned long long m = 1e9 + 7;
int n=0;
cin>>n;
vector<ll> ans;
ans.push_back(1);
ans.push_back(2);
ans.push_back(2);
for(int i=3; i<n; i++){
ans.push_back((ans[i-2]+ans[i-3])%m);
}
cout<<ans[n-1]<<endl;
return 0;
}
newlife171128