結果

問題 No.533 Mysterious Stairs
ユーザー GrenacheGrenache
提出日時 2017-07-15 12:18:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 1,092 bytes
コンパイル時間 3,105 ms
コンパイル使用メモリ 77,988 KB
実行使用メモリ 75,112 KB
最終ジャッジ日時 2024-10-08 02:15:25
合計ジャッジ時間 7,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,992 KB
testcase_01 AC 118 ms
54,136 KB
testcase_02 AC 130 ms
54,428 KB
testcase_03 AC 122 ms
53,736 KB
testcase_04 AC 122 ms
53,732 KB
testcase_05 AC 106 ms
52,836 KB
testcase_06 AC 122 ms
53,920 KB
testcase_07 AC 120 ms
53,956 KB
testcase_08 AC 106 ms
52,948 KB
testcase_09 AC 120 ms
53,832 KB
testcase_10 AC 110 ms
52,784 KB
testcase_11 AC 121 ms
53,680 KB
testcase_12 AC 110 ms
54,224 KB
testcase_13 AC 123 ms
54,040 KB
testcase_14 AC 127 ms
53,912 KB
testcase_15 AC 119 ms
52,968 KB
testcase_16 AC 118 ms
53,788 KB
testcase_17 AC 132 ms
53,944 KB
testcase_18 AC 111 ms
52,716 KB
testcase_19 AC 113 ms
52,804 KB
testcase_20 AC 162 ms
56,472 KB
testcase_21 AC 165 ms
56,420 KB
testcase_22 AC 160 ms
62,972 KB
testcase_23 AC 207 ms
75,004 KB
testcase_24 AC 210 ms
75,112 KB
testcase_25 AC 165 ms
56,284 KB
testcase_26 AC 199 ms
71,792 KB
testcase_27 AC 177 ms
60,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder533 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int MOD = 1_000_000_007;

		int n = sc.nextInt();

		long[][] dp = new long[3][n + 10];
		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++) {
				if (dp[j][i] == 0) {
					continue;
				}

				if (i + (j + 1) % 3 + 1 <= n) {
					dp[(j + 1) % 3][i + (j + 1) % 3 + 1] += dp[j][i];
					dp[(j + 1) % 3][i + (j + 1) % 3 + 1] %= MOD;
				}
				if (i + (j + 2) % 3 + 1 <= n) {
					dp[(j + 2) % 3][i + (j + 2) % 3 + 1] += dp[j][i];
					dp[(j + 1) % 3][i + (j + 1) % 3 + 1] %= MOD;
				}
			}
		}

		pr.println((dp[0][n] + dp[1][n] + dp[2][n]) % MOD);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0