結果

問題 No.1111 コード進行
ユーザー tanon710tanon710
提出日時 2020-07-10 22:00:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 337,488 KB
最終ジャッジ日時 2024-10-11 09:13:10
合計ジャッジ時間 9,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,856 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,156 KB
testcase_05 AC 43 ms
54,528 KB
testcase_06 AC 55 ms
65,024 KB
testcase_07 AC 60 ms
67,072 KB
testcase_08 AC 57 ms
63,744 KB
testcase_09 AC 57 ms
63,104 KB
testcase_10 AC 57 ms
67,456 KB
testcase_11 AC 54 ms
62,748 KB
testcase_12 AC 58 ms
65,792 KB
testcase_13 AC 53 ms
63,488 KB
testcase_14 AC 64 ms
69,376 KB
testcase_15 AC 52 ms
62,208 KB
testcase_16 AC 59 ms
66,432 KB
testcase_17 AC 55 ms
66,304 KB
testcase_18 AC 43 ms
60,984 KB
testcase_19 AC 39 ms
53,336 KB
testcase_20 AC 45 ms
61,820 KB
testcase_21 AC 43 ms
58,904 KB
testcase_22 AC 51 ms
69,380 KB
testcase_23 AC 49 ms
65,424 KB
testcase_24 AC 48 ms
65,472 KB
testcase_25 AC 60 ms
72,952 KB
testcase_26 WA -
testcase_27 AC 46 ms
61,772 KB
testcase_28 AC 169 ms
182,000 KB
testcase_29 AC 103 ms
113,492 KB
testcase_30 WA -
testcase_31 AC 52 ms
72,644 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 127 ms
136,800 KB
testcase_35 AC 191 ms
180,332 KB
testcase_36 AC 294 ms
181,652 KB
testcase_37 AC 113 ms
90,752 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 194 ms
182,468 KB
testcase_42 AC 156 ms
113,472 KB
testcase_43 WA -
testcase_44 AC 85 ms
91,028 KB
testcase_45 AC 149 ms
136,568 KB
testcase_46 WA -
testcase_47 AC 1,204 ms
337,488 KB
testcase_48 AC 62 ms
69,248 KB
testcase_49 AC 63 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

N,M,K=map(int,input().split())
arr=[list(map(int,input().split())) for _ in range(M)]
dp=[[[0]*(K+1) for _ in range(301)] for _ in range(N)]
for i in range(301):
    dp[0][i][0]=1
for i in range(N-1):
    for j in range(M):
        p,q,c=arr[j]
        for k in range(K-c,-1,-1):
            dp[i+1][q][k+c]+=dp[i][p][k]
ans=0
for i in range(301):
    ans+=dp[N-1][i][K]
print(ans)
0