結果

問題 No.1111 コード進行
ユーザー tanon710tanon710
提出日時 2020-07-10 22:37:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 81,460 KB
実行使用メモリ 297,032 KB
最終ジャッジ日時 2024-10-11 09:59:40
合計ジャッジ時間 7,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,384 KB
testcase_01 AC 40 ms
59,524 KB
testcase_02 AC 38 ms
53,228 KB
testcase_03 AC 39 ms
53,168 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 43 ms
61,028 KB
testcase_06 AC 51 ms
66,568 KB
testcase_07 AC 57 ms
68,184 KB
testcase_08 AC 52 ms
65,512 KB
testcase_09 AC 52 ms
67,112 KB
testcase_10 AC 52 ms
69,540 KB
testcase_11 AC 49 ms
64,648 KB
testcase_12 AC 54 ms
67,092 KB
testcase_13 AC 49 ms
65,808 KB
testcase_14 AC 61 ms
72,060 KB
testcase_15 AC 49 ms
63,548 KB
testcase_16 AC 56 ms
67,828 KB
testcase_17 AC 48 ms
68,464 KB
testcase_18 AC 41 ms
59,744 KB
testcase_19 AC 39 ms
53,936 KB
testcase_20 AC 46 ms
63,548 KB
testcase_21 AC 43 ms
59,116 KB
testcase_22 AC 52 ms
71,460 KB
testcase_23 AC 50 ms
65,224 KB
testcase_24 AC 49 ms
66,780 KB
testcase_25 AC 66 ms
74,224 KB
testcase_26 WA -
testcase_27 AC 51 ms
63,760 KB
testcase_28 AC 171 ms
182,368 KB
testcase_29 AC 106 ms
113,136 KB
testcase_30 WA -
testcase_31 AC 52 ms
73,484 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 145 ms
156,596 KB
testcase_35 AC 176 ms
180,696 KB
testcase_36 AC 355 ms
181,728 KB
testcase_37 AC 131 ms
90,460 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 202 ms
182,312 KB
testcase_42 AC 187 ms
113,048 KB
testcase_43 WA -
testcase_44 AC 100 ms
91,264 KB
testcase_45 AC 170 ms
136,832 KB
testcase_46 WA -
testcase_47 AC 766 ms
297,032 KB
testcase_48 AC 61 ms
72,496 KB
testcase_49 AC 61 ms
72,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

mod=10**9+7
N,M,K=map(int,input().split())
edges=[[] for _ in range(301)]
s=set()
for _ in range(M):
    p,q,c=map(int,input().split())
    edges[p].append((q,c))
    s.add(p)
dp=[[[0]*(K+1) for _ in range(301)] for _ in range(N+1)]
for i in range(301):
    if i not in s:
        dp[1][i][0]=0
    else:
        dp[1][i][0]=1
for i in range(1,N):
    for j in s:
        for q,c in edges[j]:
            for k in range(K-c,-1,-1):
                dp[i+1][q][k+c]+=dp[i][j][k]
                dp[i+1][q][k+c]%=mod
ans=0
for i in range(301):
    ans+=dp[N][i][K]
print(ans)
0