結果

問題 No.533 Mysterious Stairs
ユーザー tentententen
提出日時 2023-01-06 18:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,153 ms / 5,000 ms
コード長 2,174 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 89,784 KB
実行使用メモリ 83,944 KB
最終ジャッジ日時 2024-11-30 13:45:31
合計ジャッジ時間 10,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
37,428 KB
testcase_01 AC 48 ms
37,068 KB
testcase_02 AC 45 ms
36,964 KB
testcase_03 AC 47 ms
36,964 KB
testcase_04 AC 47 ms
36,688 KB
testcase_05 AC 46 ms
37,192 KB
testcase_06 AC 46 ms
36,932 KB
testcase_07 AC 46 ms
37,248 KB
testcase_08 AC 46 ms
36,952 KB
testcase_09 AC 47 ms
37,072 KB
testcase_10 AC 45 ms
37,344 KB
testcase_11 AC 46 ms
37,152 KB
testcase_12 AC 47 ms
36,940 KB
testcase_13 AC 49 ms
36,888 KB
testcase_14 AC 45 ms
37,432 KB
testcase_15 AC 46 ms
37,212 KB
testcase_16 AC 47 ms
37,136 KB
testcase_17 AC 52 ms
37,456 KB
testcase_18 AC 53 ms
37,300 KB
testcase_19 AC 53 ms
37,992 KB
testcase_20 AC 85 ms
48,980 KB
testcase_21 AC 84 ms
50,128 KB
testcase_22 AC 350 ms
65,236 KB
testcase_23 AC 2,153 ms
83,944 KB
testcase_24 AC 1,816 ms
83,832 KB
testcase_25 AC 96 ms
48,084 KB
testcase_26 AC 1,471 ms
77,088 KB
testcase_27 AC 140 ms
66,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        dp = new int[3][n];
        int ans = 0;
        for (int i = 0; i < 3; i++) {
            ans += dfw(i, n - i - 1);
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static int dfw(int idx, int value) {
        if (value < 0) {
            return 0;
        }
        if (value == 0) {
            return 1;
        }
        if (dp[idx][value] == 0) {
            for (int i = 0; i < 3; i++) {
                if (i == idx) {
                    continue;
                }
                dp[idx][value] += dfw(i, value - i - 1);
                dp[idx][value] %= MOD;
            }
        }
        return dp[idx][value];
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0