結果

問題 No.1111 コード進行
ユーザー ああいいああいい
提出日時 2022-05-15 09:49:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 91,580 KB
最終ジャッジ日時 2024-07-23 21:52:27
合計ジャッジ時間 6,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,264 KB
testcase_01 AC 44 ms
59,008 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 43 ms
60,416 KB
testcase_06 AC 60 ms
68,736 KB
testcase_07 AC 64 ms
70,528 KB
testcase_08 AC 62 ms
66,944 KB
testcase_09 AC 54 ms
65,280 KB
testcase_10 AC 60 ms
70,400 KB
testcase_11 AC 57 ms
65,024 KB
testcase_12 AC 62 ms
68,864 KB
testcase_13 AC 55 ms
65,664 KB
testcase_14 AC 69 ms
72,832 KB
testcase_15 AC 54 ms
63,872 KB
testcase_16 AC 61 ms
70,144 KB
testcase_17 AC 55 ms
68,864 KB
testcase_18 AC 48 ms
62,336 KB
testcase_19 AC 37 ms
52,608 KB
testcase_20 AC 50 ms
63,744 KB
testcase_21 AC 47 ms
60,800 KB
testcase_22 AC 61 ms
71,808 KB
testcase_23 AC 57 ms
66,944 KB
testcase_24 AC 55 ms
66,432 KB
testcase_25 AC 75 ms
77,440 KB
testcase_26 AC 60 ms
68,608 KB
testcase_27 AC 47 ms
61,468 KB
testcase_28 AC 156 ms
82,292 KB
testcase_29 AC 103 ms
77,316 KB
testcase_30 AC 137 ms
80,456 KB
testcase_31 AC 69 ms
77,952 KB
testcase_32 AC 150 ms
78,400 KB
testcase_33 AC 130 ms
79,400 KB
testcase_34 AC 130 ms
80,508 KB
testcase_35 AC 153 ms
79,852 KB
testcase_36 AC 234 ms
83,024 KB
testcase_37 AC 106 ms
76,800 KB
testcase_38 AC 99 ms
76,600 KB
testcase_39 AC 178 ms
81,092 KB
testcase_40 AC 213 ms
81,812 KB
testcase_41 AC 180 ms
83,840 KB
testcase_42 AC 138 ms
78,160 KB
testcase_43 AC 135 ms
78,404 KB
testcase_44 AC 87 ms
77,084 KB
testcase_45 AC 142 ms
79,424 KB
testcase_46 AC 62 ms
72,576 KB
testcase_47 AC 439 ms
91,580 KB
testcase_48 AC 62 ms
72,560 KB
testcase_49 AC 63 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())

edge = []
for _ in range(M):
    p,q,c = map(int,input().split())
    edge.append((p,q,c))
mod = 10 ** 9 + 7
C = 301
dp = [[0] * (K + 1) for _ in range(C)]
for p,q,c in edge:
    if c <= K:
        dp[q][c] += 1
for _ in range(N - 2):
    nx = [[0] * (K + 1) for _ in range(C)]
    for p,q,c in edge:
        for i in range(K - c + 1):
            nx[q][i + c] += dp[p][i]
    for p in range(C):
        for i in range(K + 1):
            nx[p][i] %= mod
    dp = nx
ans = 0
for p in range(C):
    ans += dp[p][-1]
print(ans%mod)
0