結果

問題 No.314 ケンケンパ
ユーザー tentententen
提出日時 2020-10-06 12:28:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 254 ms / 1,000 ms
コード長 464 bytes
コンパイル時間 2,681 ms
コンパイル使用メモリ 73,560 KB
実行使用メモリ 76,180 KB
最終ジャッジ日時 2024-07-20 01:06:28
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 254 ms
76,180 KB
testcase_01 AC 112 ms
41,132 KB
testcase_02 AC 113 ms
40,992 KB
testcase_03 AC 115 ms
41,296 KB
testcase_04 AC 118 ms
41,188 KB
testcase_05 AC 110 ms
40,792 KB
testcase_06 AC 115 ms
40,988 KB
testcase_07 AC 117 ms
41,208 KB
testcase_08 AC 113 ms
41,300 KB
testcase_09 AC 116 ms
41,380 KB
testcase_10 AC 106 ms
40,044 KB
testcase_11 AC 112 ms
41,296 KB
testcase_12 AC 102 ms
40,180 KB
testcase_13 AC 113 ms
41,092 KB
testcase_14 AC 127 ms
41,356 KB
testcase_15 AC 120 ms
41,704 KB
testcase_16 AC 115 ms
41,820 KB
testcase_17 AC 129 ms
47,736 KB
testcase_18 AC 176 ms
58,320 KB
testcase_19 AC 242 ms
75,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[][] dp = new int[n + 1][3];
		dp[0][0] = 1;
		for (int i = 1; i <= n; i++) {
		    dp[i][0] = (dp[i - 1][1] + dp[i - 1][2]) % MOD;
		    dp[i][1] = dp[i - 1][0];
		    dp[i][2] = dp[i - 1][1];
		}
		System.out.println(((dp[n][0] + dp[n][1]) % MOD + dp[n][2]) % MOD);
	}
}
0