結果

問題 No.1111 コード進行
ユーザー tentententen
提出日時 2024-07-22 16:42:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 1,960 bytes
コンパイル時間 3,876 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 181,844 KB
最終ジャッジ日時 2024-07-22 16:42:16
合計ジャッジ時間 11,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
37,824 KB
testcase_01 AC 63 ms
37,620 KB
testcase_02 AC 62 ms
37,828 KB
testcase_03 AC 64 ms
37,896 KB
testcase_04 AC 61 ms
37,624 KB
testcase_05 AC 63 ms
38,904 KB
testcase_06 AC 84 ms
40,692 KB
testcase_07 AC 82 ms
40,128 KB
testcase_08 AC 79 ms
39,040 KB
testcase_09 AC 82 ms
39,196 KB
testcase_10 AC 77 ms
41,204 KB
testcase_11 AC 77 ms
39,048 KB
testcase_12 AC 101 ms
40,944 KB
testcase_13 AC 70 ms
39,672 KB
testcase_14 AC 111 ms
43,128 KB
testcase_15 AC 72 ms
38,852 KB
testcase_16 AC 117 ms
42,548 KB
testcase_17 AC 73 ms
41,408 KB
testcase_18 AC 64 ms
38,304 KB
testcase_19 AC 65 ms
38,764 KB
testcase_20 AC 66 ms
39,016 KB
testcase_21 AC 70 ms
38,284 KB
testcase_22 AC 78 ms
45,240 KB
testcase_23 AC 76 ms
39,768 KB
testcase_24 AC 72 ms
39,912 KB
testcase_25 AC 145 ms
48,468 KB
testcase_26 AC 121 ms
42,412 KB
testcase_27 AC 72 ms
38,652 KB
testcase_28 AC 192 ms
102,976 KB
testcase_29 AC 152 ms
67,680 KB
testcase_30 AC 189 ms
76,852 KB
testcase_31 AC 75 ms
45,236 KB
testcase_32 AC 208 ms
76,940 KB
testcase_33 AC 200 ms
67,460 KB
testcase_34 AC 170 ms
79,204 KB
testcase_35 AC 191 ms
102,896 KB
testcase_36 AC 275 ms
103,120 KB
testcase_37 AC 188 ms
57,100 KB
testcase_38 AC 204 ms
52,904 KB
testcase_39 AC 225 ms
76,576 KB
testcase_40 AC 255 ms
102,732 KB
testcase_41 AC 207 ms
102,896 KB
testcase_42 AC 201 ms
68,688 KB
testcase_43 AC 193 ms
67,444 KB
testcase_44 AC 156 ms
56,228 KB
testcase_45 AC 192 ms
77,220 KB
testcase_46 AC 130 ms
41,452 KB
testcase_47 AC 420 ms
181,844 KB
testcase_48 AC 134 ms
41,880 KB
testcase_49 AC 143 ms
41,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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();
        Map<Integer, Integer> graph = new HashMap<>();
        for (int i = 0; i < m; i++) {
            graph.put(sc.nextInt() - 1 + (sc.nextInt() - 1) * 300, sc.nextInt());
        }
        int[][][] dp = new int[n][k + 1][300];
        Arrays.fill(dp[0][0], 1);
        for (int i = 1; i < n; i++) {
            for (int x : graph.keySet()) {
                int left = x % 300;
                int right = x / 300;
                int v = graph.get(x);
                for (int j = 0; j + v <= k; j++) {
                    dp[i][j + v][right] += dp[i - 1][j][left];
                    dp[i][j + v][right] %= MOD;
                }
            }
        }
        System.out.println(Arrays.stream(dp[n - 1][k]).reduce(0, (a, b) -> (a + b) % MOD));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0