結果
問題 | No.1111 コード進行 |
ユーザー | sca1l |
提出日時 | 2020-07-19 15:07:40 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,376 bytes |
コンパイル時間 | 2,111 ms |
コンパイル使用メモリ | 77,816 KB |
実行使用メモリ | 225,316 KB |
最終ジャッジ日時 | 2024-12-16 05:52:56 |
合計ジャッジ時間 | 46,850 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
46,508 KB |
testcase_01 | AC | 119 ms
100,516 KB |
testcase_02 | AC | 113 ms
45,676 KB |
testcase_03 | AC | 124 ms
109,108 KB |
testcase_04 | AC | 111 ms
47,004 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 217 ms
47,864 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 188 ms
118,704 KB |
testcase_14 | WA | - |
testcase_15 | AC | 163 ms
109,508 KB |
testcase_16 | WA | - |
testcase_17 | AC | 145 ms
109,452 KB |
testcase_18 | AC | 122 ms
46,264 KB |
testcase_19 | AC | 129 ms
41,452 KB |
testcase_20 | AC | 164 ms
41,860 KB |
testcase_21 | AC | 150 ms
42,104 KB |
testcase_22 | AC | 171 ms
42,436 KB |
testcase_23 | WA | - |
testcase_24 | AC | 186 ms
42,636 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 194 ms
41,904 KB |
testcase_28 | AC | 155 ms
42,984 KB |
testcase_29 | AC | 201 ms
43,956 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | AC | 140 ms
42,280 KB |
testcase_35 | AC | 154 ms
42,580 KB |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | AC | 283 ms
48,060 KB |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | AC | 571 ms
48,124 KB |
testcase_45 | AC | 928 ms
52,444 KB |
testcase_46 | WA | - |
testcase_47 | TLE | - |
testcase_48 | WA | - |
testcase_49 | AC | 174 ms
225,316 KB |
ソースコード
import java.util.*; public class Main{ static final int MOD = (int)1e9+7; public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.next()); int m = Integer.parseInt(sc.next()); int k = Integer.parseInt(sc.next()); int[][] complexity = new int[301][301]; for(int i=0; i<m; i++){ int p = Integer.parseInt(sc.next()); int q = Integer.parseInt(sc.next()); int c = Integer.parseInt(sc.next()); complexity[p][q] = c; } int[][][] dp = new int[n][m+1][k+1]; for(int i=1; i<=m; i++){ dp[0][i][0] = 1; } for(int i=1; i<n-1; i++){ for(int now=1; now<=m; now++){ for(int j=0; j<k; j++){ for(int next=1; next<=m; next++){ int sum = j+complexity[now][next]; if(sum <= k){ dp[i][next][sum] += dp[i-1][now][j]; dp[i][next][sum] %= MOD; } } } } } int ans = 0; for(int i=1; i<=m; i++){ ans += dp[n-2][i][k]; ans %= MOD; } System.out.println(ans); } }