結果

問題 No.314 ケンケンパ
ユーザー lifefucker_1911lifefucker_1911
提出日時 2017-10-13 12:32:52
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 952 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 70,696 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-04-28 17:26:38
合計ジャッジ時間 1,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘long long int countKenpa(long long int, long long int, long long int)’:
main.cpp:42:1: warning: control reaches end of non-void function [-Wreturn-type]
   42 | }
      | ^

ソースコード

diff #

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <map>
#include <string>
using namespace std;
long long int case1[1000000] = {0};
long long int case2[1000000] = {0};
long long int case3[1000000] = {0};


long long int countKenpa(long long int n, long long int ikkomae,long long int jibun){
	if( n == 0){
		return 0;
	}else if( n == 1){
		return 1;
	}
	if(jibun == 2){
		if(case1[n] != 0){
			return case1[n];
		}
		case1[n] = countKenpa(n-1,jibun,1);
		return case1[n];
	}else if(jibun == 1){
		if(ikkomae == 1){
			if(case2[n] != 0){
				return case2[n];
			}
			case2[n] = countKenpa(n-1,jibun,2);
			return case2[n];
		}else if(ikkomae == 2){
			if(case3[n] != 0){
				return case3[n];
			}
			case3[n] = countKenpa(n-1,jibun,1) + countKenpa(n-1,jibun,2);
			return case3[n];
		}
	}
}

int main()
{
	long long int n;
	cin>>n;
	cout<< countKenpa(n,2,1) % (1000000000 + 7)<<endl;
    return 0;
}
0