結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
Ozu0205
|
| 提出日時 | 2015-12-12 17:57:01 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 391 bytes |
| コンパイル時間 | 603 ms |
| コンパイル使用メモリ | 67,200 KB |
| 実行使用メモリ | 11,100 KB |
| 最終ジャッジ日時 | 2024-09-15 08:47:22 |
| 合計ジャッジ時間 | 1,257 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 2 WA * 15 |
ソースコード
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<functional>
#include<set>
#include<string>
using namespace std;
const int surplus = 100000;
int n;
int dp[1000001][2];
int main(){
cin >> n;
dp[1][0] = 1;
for (int i = 2; i <= n; i++){
dp[i][0] = dp[i - 1][0] + dp[i - 1][1];
dp[i][1] = dp[i - 1][0];
}
cout << dp[n][0] + dp[n][1] << endl;
return 0;
}
Ozu0205