結果

問題 No.1111 コード進行
ユーザー marroncastlemarroncastle
提出日時 2020-07-10 22:09:04
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 469 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 515,712 KB
最終ジャッジ日時 2024-10-11 09:25:06
合計ジャッジ時間 12,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,844 KB
testcase_01 AC 44 ms
61,280 KB
testcase_02 AC 39 ms
54,912 KB
testcase_03 AC 39 ms
53,704 KB
testcase_04 AC 38 ms
55,180 KB
testcase_05 RE -
testcase_06 AC 83 ms
86,112 KB
testcase_07 RE -
testcase_08 AC 71 ms
74,292 KB
testcase_09 AC 62 ms
70,768 KB
testcase_10 AC 87 ms
91,656 KB
testcase_11 AC 61 ms
72,884 KB
testcase_12 AC 85 ms
86,076 KB
testcase_13 AC 61 ms
72,932 KB
testcase_14 AC 101 ms
90,664 KB
testcase_15 AC 75 ms
88,468 KB
testcase_16 AC 92 ms
87,448 KB
testcase_17 AC 84 ms
91,812 KB
testcase_18 AC 55 ms
73,232 KB
testcase_19 AC 46 ms
62,968 KB
testcase_20 RE -
testcase_21 AC 49 ms
72,196 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 62 ms
74,220 KB
testcase_25 AC 115 ms
90,592 KB
testcase_26 AC 86 ms
91,060 KB
testcase_27 AC 53 ms
67,312 KB
testcase_28 AC 446 ms
316,440 KB
testcase_29 AC 272 ms
245,264 KB
testcase_30 AC 343 ms
228,392 KB
testcase_31 AC 88 ms
91,864 KB
testcase_32 AC 462 ms
304,776 KB
testcase_33 AC 289 ms
158,912 KB
testcase_34 AC 316 ms
251,696 KB
testcase_35 AC 494 ms
369,208 KB
testcase_36 AC 608 ms
316,440 KB
testcase_37 AC 270 ms
223,528 KB
testcase_38 AC 221 ms
181,704 KB
testcase_39 AC 451 ms
227,636 KB
testcase_40 AC 568 ms
314,488 KB
testcase_41 AC 529 ms
351,876 KB
testcase_42 AC 367 ms
250,752 KB
testcase_43 AC 324 ms
201,472 KB
testcase_44 AC 197 ms
160,000 KB
testcase_45 AC 416 ms
277,632 KB
testcase_46 AC 305 ms
295,680 KB
testcase_47 MLE -
testcase_48 AC 296 ms
295,828 KB
testcase_49 AC 295 ms
295,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
P = [0]*M
Q = [0]*M
C = [0]*M
for i in range(M):
    P[i],Q[i],C[i] = map(int, input().split())
dp = [[[0]*300 for _ in range(K+300)] for _ in range(N)]
mod = 10**9+7
for i in range(300):
    dp[0][0][i] = 1
for n in range(N-1):
    for k in range(K+1):
        for i in range(300):
            dp[n][k][i] %= mod
        for i in range(M):
            dp[n+1][k+C[i]][Q[i]-1] += dp[n][k][P[i]-1]
ans = sum(dp[-1][K])%mod
print(ans)
0