結果

問題 No.612 Move on grid
ユーザー htensaihtensai
提出日時 2020-02-12 09:59:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 434 ms / 2,500 ms
コード長 1,191 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 77,580 KB
実行使用メモリ 80,956 KB
最終ジャッジ日時 2024-10-03 03:43:50
合計ジャッジ時間 9,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,856 KB
testcase_01 AC 135 ms
41,324 KB
testcase_02 AC 165 ms
41,828 KB
testcase_03 AC 223 ms
52,496 KB
testcase_04 AC 434 ms
80,712 KB
testcase_05 AC 414 ms
80,956 KB
testcase_06 AC 409 ms
80,932 KB
testcase_07 AC 426 ms
80,556 KB
testcase_08 AC 413 ms
80,740 KB
testcase_09 AC 420 ms
80,668 KB
testcase_10 AC 320 ms
67,132 KB
testcase_11 AC 228 ms
56,160 KB
testcase_12 AC 356 ms
76,100 KB
testcase_13 AC 248 ms
57,996 KB
testcase_14 AC 377 ms
75,896 KB
testcase_15 AC 227 ms
56,128 KB
testcase_16 AC 404 ms
80,588 KB
testcase_17 AC 253 ms
58,800 KB
testcase_18 AC 351 ms
76,452 KB
testcase_19 AC 318 ms
75,536 KB
testcase_20 AC 395 ms
78,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int t = sc.nextInt();
        int[] arr = new int[3];
        int count = 0;
        int max = 0;
        for (int i = 0; i < 3; i++) {
            arr[i] = Math.abs(sc.nextInt());
        }
        int d = sc.nextInt();
        int e = sc.nextInt();
        int[][] dp = new int[t + 1][20002];
        dp[0][10001] = 1;
        for (int i = 0; i < t; i++) {
            for (int j = 0; j < dp[i].length; j++) {
                for (int x : arr) {
                    if (j - x >= 0) {
                        dp[i + 1][j - x] += dp[i][j];
                        dp[i + 1][j - x] %= MOD;
                    }
                    if (j + x < dp[i].length) {
                        dp[i + 1][j + x] += dp[i][j];
                        dp[i + 1][j + x] %= MOD;
                    }
                }
            }
        }
        int total = 0;
        for (int i = d + 10001; i <= e + 10001; i++) {
            total += dp[t][i];
            total %= MOD;
        }
        System.out.println(total);
    }
}
0