結果

問題 No.1111 コード進行
ユーザー qumazakiqumazaki
提出日時 2020-07-11 01:17:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 97,500 KB
最終ジャッジ日時 2024-10-11 22:16:41
合計ジャッジ時間 6,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,320 KB
testcase_01 AC 39 ms
53,108 KB
testcase_02 AC 39 ms
52,928 KB
testcase_03 AC 39 ms
53,008 KB
testcase_04 AC 39 ms
52,396 KB
testcase_05 AC 41 ms
57,344 KB
testcase_06 AC 57 ms
70,296 KB
testcase_07 AC 59 ms
70,328 KB
testcase_08 AC 58 ms
69,044 KB
testcase_09 AC 53 ms
65,268 KB
testcase_10 AC 57 ms
71,116 KB
testcase_11 AC 51 ms
65,540 KB
testcase_12 AC 59 ms
70,544 KB
testcase_13 AC 52 ms
66,940 KB
testcase_14 AC 65 ms
74,324 KB
testcase_15 AC 53 ms
66,080 KB
testcase_16 AC 61 ms
71,528 KB
testcase_17 AC 50 ms
69,912 KB
testcase_18 AC 44 ms
62,208 KB
testcase_19 AC 40 ms
54,544 KB
testcase_20 AC 48 ms
64,216 KB
testcase_21 AC 44 ms
60,468 KB
testcase_22 AC 56 ms
74,184 KB
testcase_23 AC 54 ms
68,268 KB
testcase_24 AC 53 ms
68,280 KB
testcase_25 AC 74 ms
77,376 KB
testcase_26 AC 61 ms
69,464 KB
testcase_27 AC 49 ms
62,920 KB
testcase_28 AC 87 ms
85,072 KB
testcase_29 AC 77 ms
77,240 KB
testcase_30 AC 109 ms
81,524 KB
testcase_31 AC 59 ms
76,780 KB
testcase_32 AC 142 ms
78,340 KB
testcase_33 AC 153 ms
79,064 KB
testcase_34 AC 78 ms
81,868 KB
testcase_35 AC 86 ms
82,040 KB
testcase_36 AC 275 ms
84,796 KB
testcase_37 AC 124 ms
76,956 KB
testcase_38 AC 111 ms
76,752 KB
testcase_39 AC 210 ms
81,480 KB
testcase_40 AC 231 ms
83,768 KB
testcase_41 AC 111 ms
85,320 KB
testcase_42 AC 155 ms
78,292 KB
testcase_43 AC 165 ms
78,200 KB
testcase_44 AC 85 ms
76,760 KB
testcase_45 AC 117 ms
79,784 KB
testcase_46 AC 67 ms
76,284 KB
testcase_47 AC 587 ms
97,500 KB
testcase_48 AC 62 ms
74,804 KB
testcase_49 AC 69 ms
76,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

n,m,k = map(int,readline().split())
pqc = list(map(int,read().split()))
mod = 10**9+7

links = [dict() for _ in range(300+1)]
it = iter(pqc)
for p,q,c in zip(it,it,it):
    links[p][q] = c

dp = [0,0]
dp[0] = [[0] * (k+1) for _ in range(300+1)]
dp[1] = [[0] * (k+1) for _ in range(300+1)]
for j in range(1,300+1):
    dp[0][j][0] = 1

for i in range(n-1):
    i %= 2
    i_next = 1-i
    dp[i_next] = [[0] * (k+1) for _ in range(300+1)]
    for j in range(1,301):
        for key,val in links[j].items():
            for l in range(k-val+1):
                dp[i_next][j][l+val] += dp[i][key][l]
                dp[i_next][j][l+val] %= mod

ans = 0
for j in range(1,301):
    ans += dp[i_next][j][k]

ans %= mod
print(ans)
0