結果

問題 No.533 Mysterious Stairs
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-17 01:33:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 3,100 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 64,948 KB
最終ジャッジ日時 2024-06-30 16:28:30
合計ジャッジ時間 7,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
51,128 KB
testcase_01 AC 101 ms
40,176 KB
testcase_02 AC 101 ms
39,960 KB
testcase_03 AC 120 ms
41,360 KB
testcase_04 AC 107 ms
39,976 KB
testcase_05 AC 120 ms
41,004 KB
testcase_06 AC 108 ms
40,104 KB
testcase_07 AC 106 ms
39,848 KB
testcase_08 AC 123 ms
41,312 KB
testcase_09 AC 122 ms
41,284 KB
testcase_10 AC 119 ms
41,244 KB
testcase_11 AC 123 ms
41,328 KB
testcase_12 AC 125 ms
41,436 KB
testcase_13 AC 110 ms
39,840 KB
testcase_14 AC 121 ms
41,424 KB
testcase_15 AC 126 ms
41,236 KB
testcase_16 AC 113 ms
40,180 KB
testcase_17 AC 127 ms
41,352 KB
testcase_18 AC 111 ms
40,276 KB
testcase_19 AC 126 ms
41,780 KB
testcase_20 AC 135 ms
43,300 KB
testcase_21 AC 147 ms
43,932 KB
testcase_22 AC 151 ms
49,976 KB
testcase_23 AC 193 ms
64,660 KB
testcase_24 AC 190 ms
64,948 KB
testcase_25 AC 139 ms
43,956 KB
testcase_26 AC 173 ms
60,876 KB
testcase_27 AC 151 ms
48,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No533{
	public static void main(String[] args){
		long mod = 1000000007;
		
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();

		long[][] dp = new long[3][N+1];
		dp[0][1] = 1;
		if(N > 1) dp[1][2] = 1;
		if(N > 2){
			dp[0][3] = 1;
			dp[1][3] = 1;
			dp[2][3] = 1;
		}
		for(int i = 4; i < N+1; i++){
			dp[0][i] = (dp[1][i-1] + dp[2][i-1])%mod;
			dp[1][i] = (dp[0][i-2] + dp[2][i-2])%mod;
			dp[2][i] = (dp[0][i-3] + dp[1][i-3])%mod;
		}
		long ans = dp[0][N];
		ans = (ans + dp[1][N])%mod;
		ans = (ans + dp[2][N])%mod;
		System.out.println(ans);
	}
}
0