結果

問題 No.1111 コード進行
ユーザー 👑 KazunKazun
提出日時 2020-07-10 23:24:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,169 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 296,704 KB
最終ジャッジ日時 2024-10-11 18:50:55
合計ジャッジ時間 9,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,288 KB
testcase_01 AC 44 ms
59,432 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 55 ms
67,968 KB
testcase_06 AC 72 ms
73,980 KB
testcase_07 AC 73 ms
72,960 KB
testcase_08 AC 65 ms
69,120 KB
testcase_09 AC 66 ms
70,144 KB
testcase_10 AC 67 ms
74,240 KB
testcase_11 AC 60 ms
67,840 KB
testcase_12 AC 72 ms
72,960 KB
testcase_13 AC 65 ms
71,424 KB
testcase_14 AC 100 ms
82,992 KB
testcase_15 AC 62 ms
68,864 KB
testcase_16 AC 86 ms
80,768 KB
testcase_17 AC 66 ms
74,624 KB
testcase_18 AC 54 ms
65,536 KB
testcase_19 AC 48 ms
61,952 KB
testcase_20 AC 65 ms
73,728 KB
testcase_21 AC 50 ms
62,976 KB
testcase_22 AC 82 ms
85,120 KB
testcase_23 AC 66 ms
71,988 KB
testcase_24 AC 64 ms
70,656 KB
testcase_25 AC 95 ms
84,096 KB
testcase_26 AC 72 ms
74,240 KB
testcase_27 AC 61 ms
67,712 KB
testcase_28 AC 230 ms
182,304 KB
testcase_29 AC 152 ms
123,264 KB
testcase_30 AC 212 ms
148,648 KB
testcase_31 AC 84 ms
88,064 KB
testcase_32 AC 247 ms
143,616 KB
testcase_33 AC 273 ms
118,144 KB
testcase_34 AC 191 ms
155,992 KB
testcase_35 AC 230 ms
180,604 KB
testcase_36 AC 529 ms
185,084 KB
testcase_37 AC 209 ms
105,496 KB
testcase_38 AC 157 ms
97,380 KB
testcase_39 AC 417 ms
147,696 KB
testcase_40 AC 432 ms
176,992 KB
testcase_41 AC 289 ms
199,436 KB
testcase_42 AC 288 ms
127,488 KB
testcase_43 AC 282 ms
120,564 KB
testcase_44 AC 134 ms
100,480 KB
testcase_45 AC 244 ms
151,424 KB
testcase_46 AC 79 ms
83,072 KB
testcase_47 AC 1,169 ms
296,704 KB
testcase_48 AC 60 ms
71,552 KB
testcase_49 AC 62 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=10**9+7
N,M,K=map(int,input().split())
S=300

E=[[] for _ in range(S+1)]
F=[[] for _ in range(S+1)]
for _ in range(M):
    p,q,c=map(int,input().split())
    E[p].append((q,c))
    F[q].append((p,c))

X=[[[0]*(K+1) for _ in range(S+1)] for _ in range(N)]

for f in range(1,S+1):
    X[0][f][0]=1

for n in range(1,N):
    for a in range(1,S+1):
        for k in range(K+1):
            for (q,c) in F[a]:
                if k>=c:
                    X[n][a][k]=(X[n][a][k]+X[n-1][q][k-c])%A

Y=0
for a in range(1,S+1):
    Y=(Y+X[-1][a][-1])%A
print(Y)
0