結果

問題 No.1111 コード進行
ユーザー tentententen
提出日時 2023-11-16 16:29:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 2,549 bytes
コンパイル時間 2,592 ms
コンパイル使用メモリ 85,704 KB
実行使用メモリ 181,884 KB
最終ジャッジ日時 2024-09-26 05:08:47
合計ジャッジ時間 9,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,428 KB
testcase_01 AC 50 ms
50,528 KB
testcase_02 AC 51 ms
50,456 KB
testcase_03 AC 51 ms
50,520 KB
testcase_04 AC 52 ms
50,056 KB
testcase_05 AC 54 ms
50,160 KB
testcase_06 AC 74 ms
53,008 KB
testcase_07 AC 69 ms
53,208 KB
testcase_08 AC 76 ms
51,208 KB
testcase_09 AC 73 ms
50,908 KB
testcase_10 AC 59 ms
52,188 KB
testcase_11 AC 56 ms
50,600 KB
testcase_12 AC 84 ms
53,788 KB
testcase_13 AC 52 ms
50,560 KB
testcase_14 AC 103 ms
56,288 KB
testcase_15 AC 57 ms
50,192 KB
testcase_16 AC 84 ms
55,140 KB
testcase_17 AC 53 ms
52,612 KB
testcase_18 AC 50 ms
50,612 KB
testcase_19 AC 49 ms
50,260 KB
testcase_20 AC 51 ms
50,524 KB
testcase_21 AC 53 ms
50,080 KB
testcase_22 AC 55 ms
55,332 KB
testcase_23 AC 55 ms
50,684 KB
testcase_24 AC 54 ms
52,532 KB
testcase_25 AC 99 ms
56,580 KB
testcase_26 AC 85 ms
53,648 KB
testcase_27 AC 56 ms
50,420 KB
testcase_28 AC 150 ms
112,128 KB
testcase_29 AC 114 ms
76,340 KB
testcase_30 AC 156 ms
87,804 KB
testcase_31 AC 58 ms
44,660 KB
testcase_32 AC 186 ms
77,620 KB
testcase_33 AC 156 ms
68,076 KB
testcase_34 AC 124 ms
80,224 KB
testcase_35 AC 156 ms
104,332 KB
testcase_36 AC 253 ms
104,656 KB
testcase_37 AC 172 ms
57,804 KB
testcase_38 AC 160 ms
55,776 KB
testcase_39 AC 184 ms
77,460 KB
testcase_40 AC 208 ms
103,720 KB
testcase_41 AC 193 ms
120,812 KB
testcase_42 AC 220 ms
68,160 KB
testcase_43 AC 172 ms
69,280 KB
testcase_44 AC 117 ms
55,380 KB
testcase_45 AC 168 ms
79,240 KB
testcase_46 AC 112 ms
45,776 KB
testcase_47 AC 330 ms
181,884 KB
testcase_48 AC 124 ms
45,560 KB
testcase_49 AC 115 ms
46,000 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 = 1; i < n; i++) {
            for (int j = 0; j < 300; j++) {
                for (int x : graph.get(j).keySet()) {
                    int y = graph.get(j).get(x);
                    for (int a = 0; a + y <= k; a++) {
                        dp[i][x][a + y] += dp[i - 1][j][a];
                        dp[i][x][a + y] %= 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