結果

問題 No.314 ケンケンパ
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 17:10:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 325 ms / 1,000 ms
コード長 644 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 101,756 KB
最終ジャッジ日時 2024-07-07 18:54:28
合計ジャッジ時間 6,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
83,724 KB
testcase_01 AC 123 ms
41,244 KB
testcase_02 AC 123 ms
41,252 KB
testcase_03 AC 120 ms
41,000 KB
testcase_04 AC 117 ms
40,964 KB
testcase_05 AC 120 ms
40,896 KB
testcase_06 AC 109 ms
40,008 KB
testcase_07 AC 116 ms
41,116 KB
testcase_08 AC 114 ms
40,928 KB
testcase_09 AC 120 ms
41,244 KB
testcase_10 AC 104 ms
39,748 KB
testcase_11 AC 121 ms
39,912 KB
testcase_12 AC 125 ms
41,228 KB
testcase_13 AC 103 ms
40,036 KB
testcase_14 AC 125 ms
41,424 KB
testcase_15 AC 123 ms
41,576 KB
testcase_16 AC 114 ms
41,344 KB
testcase_17 AC 143 ms
48,004 KB
testcase_18 AC 202 ms
66,904 KB
testcase_19 AC 325 ms
101,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Kenkenpa {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();
		long[][] root = new long[N+1][3];    //[i][0]がケン(1)、[i][1]がケン(2)、[i][2]がパ
		root[1][0] = 1;
		int t = (int)Math.pow(10, 9) + 7;
		for(int i = 2;i <= N;i++){
			root[i][0] = root[i-1][2];
			root[i][1] = root[i-1][0];
			root[i][2] = root[i-1][0] + root[i-1][1];
			root[i][0] %= t;
			root[i][1] %= t;
			root[i][2] %= t;
		}
		System.out.println((root[N][0] + root[N][1] + root[N][2]) % t);

	}

}
0