結果

問題 No.1111 コード進行
ユーザー tentententen
提出日時 2023-04-25 08:17:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 2,556 bytes
コンパイル時間 3,329 ms
コンパイル使用メモリ 85,052 KB
実行使用メモリ 193,304 KB
最終ジャッジ日時 2024-11-14 05:00:08
合計ジャッジ時間 10,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,436 KB
testcase_01 AC 54 ms
50,408 KB
testcase_02 AC 54 ms
50,408 KB
testcase_03 AC 55 ms
50,400 KB
testcase_04 AC 53 ms
50,312 KB
testcase_05 AC 53 ms
50,600 KB
testcase_06 AC 72 ms
53,144 KB
testcase_07 AC 73 ms
53,204 KB
testcase_08 AC 82 ms
51,080 KB
testcase_09 AC 65 ms
50,700 KB
testcase_10 AC 69 ms
52,716 KB
testcase_11 AC 60 ms
50,596 KB
testcase_12 AC 78 ms
53,652 KB
testcase_13 AC 57 ms
50,512 KB
testcase_14 AC 94 ms
56,768 KB
testcase_15 AC 60 ms
50,660 KB
testcase_16 AC 82 ms
53,820 KB
testcase_17 AC 58 ms
52,652 KB
testcase_18 AC 56 ms
50,608 KB
testcase_19 AC 54 ms
50,584 KB
testcase_20 AC 55 ms
50,556 KB
testcase_21 AC 58 ms
50,528 KB
testcase_22 AC 61 ms
54,992 KB
testcase_23 AC 63 ms
50,648 KB
testcase_24 AC 59 ms
52,504 KB
testcase_25 AC 108 ms
57,788 KB
testcase_26 AC 89 ms
53,900 KB
testcase_27 AC 59 ms
50,544 KB
testcase_28 AC 163 ms
113,088 KB
testcase_29 AC 125 ms
76,800 KB
testcase_30 AC 170 ms
88,620 KB
testcase_31 AC 63 ms
55,088 KB
testcase_32 AC 203 ms
87,552 KB
testcase_33 AC 175 ms
78,512 KB
testcase_34 AC 131 ms
91,996 KB
testcase_35 AC 167 ms
112,956 KB
testcase_36 AC 309 ms
117,500 KB
testcase_37 AC 187 ms
66,696 KB
testcase_38 AC 165 ms
65,020 KB
testcase_39 AC 199 ms
89,604 KB
testcase_40 AC 247 ms
116,548 KB
testcase_41 AC 213 ms
130,268 KB
testcase_42 AC 215 ms
79,460 KB
testcase_43 AC 200 ms
78,464 KB
testcase_44 AC 126 ms
64,456 KB
testcase_45 AC 181 ms
90,960 KB
testcase_46 AC 124 ms
57,420 KB
testcase_47 AC 394 ms
193,304 KB
testcase_48 AC 129 ms
57,360 KB
testcase_49 AC 131 ms
57,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 m = sc.nextInt();
        int k = sc.nextInt();
        ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
        for (int i = 0; i < 300; i++) {
            graph.add(new HashMap<>());
        }
        for (int i = 0; i < m; i++) {
            graph.get(sc.nextInt() - 1).put(sc.nextInt() - 1, sc.nextInt());
        }
        int[][][] dp = new int[n][300][k + 1];
        for (int i = 0; i < 300; i++) {
            dp[0][i][0] = 1;
        }
        for (int i = 0; i < n - 1; i++) {
            for (int j = 0; j < 300; j++) {
                for (int x : graph.get(j).keySet()) {
                    int value = graph.get(j).get(x);
                    for (int s = k - value; s >= 0; s--) {
                        dp[i + 1][x][s + value] += dp[i][j][s];
                        dp[i + 1][x][s + value] %= MOD;
                    }
                }
            }
        }
        int ans = 0;
        for (int i = 0; i < 300; i++) {
            ans += dp[n - 1][i][k];
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
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