結果

問題 No.533 Mysterious Stairs
ユーザー tentententen
提出日時 2020-09-10 08:54:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 765 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 53,896 KB
最終ジャッジ日時 2024-06-01 10:07:35
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,196 KB
testcase_01 AC 129 ms
41,384 KB
testcase_02 AC 130 ms
41,208 KB
testcase_03 AC 129 ms
41,384 KB
testcase_04 AC 129 ms
41,408 KB
testcase_05 AC 117 ms
40,032 KB
testcase_06 AC 131 ms
41,224 KB
testcase_07 AC 133 ms
41,072 KB
testcase_08 AC 130 ms
41,208 KB
testcase_09 AC 130 ms
41,432 KB
testcase_10 AC 136 ms
41,000 KB
testcase_11 AC 135 ms
40,996 KB
testcase_12 AC 118 ms
40,248 KB
testcase_13 AC 129 ms
41,228 KB
testcase_14 AC 129 ms
41,316 KB
testcase_15 AC 135 ms
41,700 KB
testcase_16 AC 119 ms
40,156 KB
testcase_17 AC 121 ms
40,184 KB
testcase_18 AC 139 ms
41,368 KB
testcase_19 AC 138 ms
41,168 KB
testcase_20 AC 143 ms
42,716 KB
testcase_21 AC 141 ms
42,644 KB
testcase_22 AC 152 ms
45,676 KB
testcase_23 AC 166 ms
52,584 KB
testcase_24 AC 179 ms
53,896 KB
testcase_25 AC 140 ms
42,584 KB
testcase_26 AC 172 ms
51,540 KB
testcase_27 AC 137 ms
44,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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