結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 41 ms
58,240 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 42 ms
61,056 KB
testcase_06 AC 52 ms
66,816 KB
testcase_07 AC 56 ms
68,224 KB
testcase_08 AC 55 ms
64,512 KB
testcase_09 AC 52 ms
65,920 KB
testcase_10 AC 52 ms
68,992 KB
testcase_11 AC 48 ms
62,992 KB
testcase_12 AC 53 ms
67,456 KB
testcase_13 AC 49 ms
64,000 KB
testcase_14 AC 61 ms
72,064 KB
testcase_15 AC 45 ms
61,184 KB
testcase_16 AC 55 ms
68,352 KB
testcase_17 AC 48 ms
67,072 KB
testcase_18 AC 43 ms
59,904 KB
testcase_19 AC 39 ms
54,016 KB
testcase_20 AC 47 ms
62,720 KB
testcase_21 AC 42 ms
59,264 KB
testcase_22 AC 49 ms
69,888 KB
testcase_23 AC 50 ms
65,280 KB
testcase_24 AC 48 ms
65,664 KB
testcase_25 AC 62 ms
74,368 KB
testcase_26 WA -
testcase_27 AC 48 ms
63,232 KB
testcase_28 AC 163 ms
182,136 KB
testcase_29 AC 108 ms
113,536 KB
testcase_30 WA -
testcase_31 AC 53 ms
73,972 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 123 ms
137,008 KB
testcase_35 AC 165 ms
180,820 KB
testcase_36 AC 247 ms
181,524 KB
testcase_37 AC 103 ms
90,608 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 208 ms
182,424 KB
testcase_42 AC 141 ms
113,188 KB
testcase_43 WA -
testcase_44 AC 84 ms
91,076 KB
testcase_45 AC 134 ms
136,728 KB
testcase_46 WA -
testcase_47 AC 1,192 ms
338,304 KB
testcase_48 AC 68 ms
70,784 KB
testcase_49 AC 68 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

N,M,K=map(int,input().split())
edges=[[] for _ in range(301)]
s1=set()
s2=set()
for _ in range(M):
    p,q,c=map(int,input().split())
    edges[p].append((q,c))
    s1.add(p)
    s2.add(q)
s=list(s1&s2)
dp=[[[0]*(K+1) for _ in range(301)] for _ in range(N+1)]
for i in range(301):
    if i not in s1:
        dp[1][i][0]=0
    else:
        dp[1][i][0]=1
for i in range(301):
    if i not in s1:
        continue
    for q,c in edges[i]:
        for k in range(K-c,-1,-1):
            dp[2][q][k+c]+=dp[1][i][k]
for i in range(2,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