結果

問題 No.1111 コード進行
ユーザー tanon710tanon710
提出日時 2020-07-10 22:34:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 338,604 KB
最終ジャッジ日時 2024-10-11 09:55:54
合計ジャッジ時間 9,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,860 KB
testcase_01 AC 42 ms
58,852 KB
testcase_02 AC 38 ms
52,960 KB
testcase_03 AC 38 ms
53,212 KB
testcase_04 AC 38 ms
53,160 KB
testcase_05 AC 42 ms
61,072 KB
testcase_06 AC 48 ms
66,640 KB
testcase_07 AC 53 ms
67,504 KB
testcase_08 AC 51 ms
64,924 KB
testcase_09 AC 49 ms
65,016 KB
testcase_10 AC 51 ms
69,664 KB
testcase_11 AC 47 ms
63,056 KB
testcase_12 AC 50 ms
67,128 KB
testcase_13 AC 47 ms
65,756 KB
testcase_14 AC 55 ms
72,168 KB
testcase_15 AC 46 ms
62,752 KB
testcase_16 AC 51 ms
68,472 KB
testcase_17 AC 46 ms
67,060 KB
testcase_18 AC 40 ms
59,780 KB
testcase_19 AC 38 ms
54,092 KB
testcase_20 AC 45 ms
62,884 KB
testcase_21 AC 41 ms
58,888 KB
testcase_22 AC 50 ms
71,276 KB
testcase_23 AC 48 ms
64,696 KB
testcase_24 AC 47 ms
66,304 KB
testcase_25 AC 60 ms
73,336 KB
testcase_26 WA -
testcase_27 AC 47 ms
63,484 KB
testcase_28 AC 164 ms
182,096 KB
testcase_29 AC 102 ms
113,184 KB
testcase_30 WA -
testcase_31 AC 50 ms
73,280 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 123 ms
136,992 KB
testcase_35 AC 169 ms
180,652 KB
testcase_36 AC 288 ms
181,608 KB
testcase_37 AC 109 ms
90,460 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 185 ms
182,624 KB
testcase_42 AC 156 ms
113,248 KB
testcase_43 WA -
testcase_44 AC 83 ms
91,148 KB
testcase_45 AC 150 ms
136,352 KB
testcase_46 WA -
testcase_47 AC 1,208 ms
338,604 KB
testcase_48 AC 57 ms
72,292 KB
testcase_49 AC 59 ms
72,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

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]
ans=0
for i in range(301):
    ans+=dp[N][i][K]
print(ans)
0