結果

問題 No.533 Mysterious Stairs
ユーザー uafr_csuafr_cs
提出日時 2017-06-23 23:13:47
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 958 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 78,072 KB
実行使用メモリ 72,572 KB
最終ジャッジ日時 2024-10-04 07:59:57
合計ジャッジ時間 6,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 112 ms
39,924 KB
testcase_03 AC 109 ms
41,036 KB
testcase_04 AC 110 ms
40,992 KB
testcase_05 AC 104 ms
40,232 KB
testcase_06 AC 110 ms
40,100 KB
testcase_07 AC 101 ms
40,820 KB
testcase_08 AC 114 ms
41,112 KB
testcase_09 AC 115 ms
41,576 KB
testcase_10 AC 111 ms
41,148 KB
testcase_11 AC 102 ms
41,220 KB
testcase_12 AC 113 ms
41,200 KB
testcase_13 AC 115 ms
41,380 KB
testcase_14 AC 112 ms
40,052 KB
testcase_15 AC 102 ms
41,172 KB
testcase_16 AC 114 ms
41,396 KB
testcase_17 AC 114 ms
41,508 KB
testcase_18 AC 120 ms
41,628 KB
testcase_19 AC 119 ms
40,812 KB
testcase_20 AC 133 ms
47,260 KB
testcase_21 AC 135 ms
46,780 KB
testcase_22 AC 156 ms
52,600 KB
testcase_23 AC 219 ms
72,024 KB
testcase_24 AC 216 ms
72,572 KB
testcase_25 AC 136 ms
47,216 KB
testcase_26 AC 204 ms
68,364 KB
testcase_27 AC 142 ms
49,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		long[][] DP = new long[4][N + 1];
		DP[1][1] = 1;
		DP[2][2] = 1;
		DP[3][3] = 1;
		
		for(int pos = 1; pos < N; pos++){
			for(int prev_step = 1; prev_step <= 3; prev_step++){
				for(int step = 1; step <= 3; step++){
					if(prev_step == step){ continue; }
					
					final int next_pos = pos + step;
					if(next_pos > N){ break; }
					
					DP[step][next_pos] += DP[prev_step][pos];
					DP[step][next_pos] %= MOD;
				}
			}
		}
		
		long sum = 0;
		for(int i = 1; i <= 3; i++){
			sum += DP[i][N];
			sum %= MOD;
		}
		
		System.out.println(sum);
	}
}
0