結果

問題 No.314 ケンケンパ
ユーザー めうめう🎒めうめう🎒
提出日時 2016-05-06 16:44:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 369 ms / 1,000 ms
コード長 738 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 76,888 KB
実行使用メモリ 115,712 KB
最終ジャッジ日時 2024-10-05 10:10:51
合計ジャッジ時間 8,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
115,432 KB
testcase_01 AC 251 ms
84,460 KB
testcase_02 AC 255 ms
84,580 KB
testcase_03 AC 254 ms
84,876 KB
testcase_04 AC 257 ms
84,348 KB
testcase_05 AC 255 ms
84,640 KB
testcase_06 AC 256 ms
84,576 KB
testcase_07 AC 253 ms
84,604 KB
testcase_08 AC 252 ms
84,628 KB
testcase_09 AC 252 ms
84,460 KB
testcase_10 AC 247 ms
84,360 KB
testcase_11 AC 249 ms
84,388 KB
testcase_12 AC 250 ms
84,380 KB
testcase_13 AC 250 ms
84,624 KB
testcase_14 AC 258 ms
85,076 KB
testcase_15 AC 259 ms
85,108 KB
testcase_16 AC 264 ms
85,616 KB
testcase_17 AC 276 ms
88,096 KB
testcase_18 AC 316 ms
99,816 KB
testcase_19 AC 369 ms
115,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Arrays;

class Main{
	static int n;

	static long memo[][] = new long[1000010][3];

	static long saiki(int now,int how_ken){
		if(now == n) return 1;
		if(memo[now][how_ken] != -1) return memo[now][how_ken];
		long sum = 0;
		if(how_ken == 0){
			sum += saiki(now + 1,1);
		}else if(how_ken == 2){
			sum += saiki(now + 1,0);
		}else{
			sum += saiki(now + 1,how_ken + 1);
			sum += saiki(now + 1,0);
		}
		return memo[now][how_ken] = sum % 1000000007;
	}

	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		for(int i = 0;i < 1000010;i++){
			for(int j = 0;j < 3;j++){
				memo[i][j] = -1;
			}
		}
		System.out.println(saiki(0,0) % 1000000007);
	}
}
0