結果

問題 No.1111 コード進行
ユーザー marroncastlemarroncastle
提出日時 2020-07-10 22:11:58
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 469 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 516,352 KB
最終ジャッジ日時 2024-10-11 09:28:12
合計ジャッジ時間 13,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,696 KB
testcase_01 AC 46 ms
61,056 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 40 ms
53,504 KB
testcase_05 AC 68 ms
67,328 KB
testcase_06 AC 91 ms
85,888 KB
testcase_07 AC 92 ms
89,472 KB
testcase_08 AC 71 ms
74,616 KB
testcase_09 AC 66 ms
70,400 KB
testcase_10 AC 91 ms
91,776 KB
testcase_11 AC 67 ms
72,448 KB
testcase_12 AC 93 ms
86,272 KB
testcase_13 AC 65 ms
71,936 KB
testcase_14 AC 106 ms
90,532 KB
testcase_15 AC 77 ms
88,696 KB
testcase_16 AC 100 ms
87,296 KB
testcase_17 AC 86 ms
91,732 KB
testcase_18 AC 57 ms
72,576 KB
testcase_19 AC 47 ms
62,080 KB
testcase_20 AC 60 ms
68,736 KB
testcase_21 AC 52 ms
70,784 KB
testcase_22 AC 94 ms
92,216 KB
testcase_23 AC 83 ms
86,820 KB
testcase_24 AC 67 ms
73,984 KB
testcase_25 AC 120 ms
90,672 KB
testcase_26 AC 88 ms
91,008 KB
testcase_27 AC 56 ms
66,048 KB
testcase_28 AC 453 ms
317,184 KB
testcase_29 AC 300 ms
245,632 KB
testcase_30 AC 376 ms
228,224 KB
testcase_31 AC 101 ms
91,776 KB
testcase_32 AC 499 ms
305,408 KB
testcase_33 AC 347 ms
158,848 KB
testcase_34 AC 329 ms
251,136 KB
testcase_35 AC 552 ms
370,176 KB
testcase_36 AC 661 ms
317,216 KB
testcase_37 AC 328 ms
224,000 KB
testcase_38 AC 241 ms
181,888 KB
testcase_39 AC 489 ms
227,712 KB
testcase_40 AC 585 ms
314,892 KB
testcase_41 AC 558 ms
352,512 KB
testcase_42 AC 386 ms
250,240 KB
testcase_43 AC 320 ms
201,904 KB
testcase_44 AC 191 ms
159,744 KB
testcase_45 AC 416 ms
278,412 KB
testcase_46 AC 312 ms
296,448 KB
testcase_47 MLE -
testcase_48 AC 347 ms
296,576 KB
testcase_49 AC 310 ms
296,492 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+301)] 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