結果

問題 No.533 Mysterious Stairs
ユーザー tentententen
提出日時 2021-12-02 09:31:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 1,410 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 78,036 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-07-05 01:48:25
合計ジャッジ時間 5,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,460 KB
testcase_01 AC 54 ms
49,904 KB
testcase_02 AC 54 ms
50,268 KB
testcase_03 AC 55 ms
50,356 KB
testcase_04 AC 54 ms
50,376 KB
testcase_05 AC 54 ms
50,488 KB
testcase_06 AC 54 ms
50,348 KB
testcase_07 AC 56 ms
49,904 KB
testcase_08 AC 55 ms
50,140 KB
testcase_09 AC 54 ms
50,044 KB
testcase_10 AC 54 ms
50,320 KB
testcase_11 AC 55 ms
50,280 KB
testcase_12 AC 55 ms
50,124 KB
testcase_13 AC 55 ms
49,908 KB
testcase_14 AC 56 ms
50,244 KB
testcase_15 AC 54 ms
50,088 KB
testcase_16 AC 56 ms
50,368 KB
testcase_17 AC 55 ms
50,076 KB
testcase_18 AC 55 ms
50,152 KB
testcase_19 AC 58 ms
50,080 KB
testcase_20 AC 84 ms
55,724 KB
testcase_21 AC 87 ms
55,764 KB
testcase_22 AC 114 ms
63,676 KB
testcase_23 AC 206 ms
84,800 KB
testcase_24 AC 210 ms
85,120 KB
testcase_25 AC 86 ms
56,020 KB
testcase_26 AC 202 ms
84,260 KB
testcase_27 AC 89 ms
60,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[][] dp = new int[Math.max(4, n + 1)][3];
        dp[1][0] = 1;
        dp[2][1] = 1;
        dp[3][0] = 1;
        dp[3][1] = 1;
        dp[3][2] = 1;
        for (int i = 4; i <= n; i++) {
            dp[i][0] = (dp[i - 1][1] + dp[i - 1][2]) % MOD;
            dp[i][1] = (dp[i - 2][0] + dp[i - 2][2]) % MOD;
            dp[i][2] = (dp[i - 3][0] + dp[i - 3][1]) % MOD;
        }
        int ans = ((dp[n][0] + dp[n][1]) % MOD + dp[n][2]) % MOD;
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0