結果

問題 No.1111 コード進行
ユーザー kohei2019kohei2019
提出日時 2022-07-18 00:48:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-06-30 01:14:36
合計ジャッジ時間 6,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 45 ms
61,184 KB
testcase_06 AC 60 ms
69,120 KB
testcase_07 AC 60 ms
69,888 KB
testcase_08 AC 57 ms
66,272 KB
testcase_09 AC 56 ms
65,792 KB
testcase_10 AC 56 ms
70,016 KB
testcase_11 AC 53 ms
64,256 KB
testcase_12 AC 63 ms
69,376 KB
testcase_13 AC 53 ms
66,304 KB
testcase_14 AC 72 ms
74,112 KB
testcase_15 AC 51 ms
63,488 KB
testcase_16 AC 65 ms
70,912 KB
testcase_17 AC 53 ms
69,248 KB
testcase_18 AC 48 ms
60,032 KB
testcase_19 AC 43 ms
60,032 KB
testcase_20 AC 49 ms
63,744 KB
testcase_21 AC 45 ms
59,984 KB
testcase_22 AC 59 ms
72,320 KB
testcase_23 AC 58 ms
67,072 KB
testcase_24 AC 55 ms
67,200 KB
testcase_25 AC 78 ms
77,440 KB
testcase_26 AC 63 ms
69,504 KB
testcase_27 AC 53 ms
64,000 KB
testcase_28 AC 89 ms
82,588 KB
testcase_29 AC 76 ms
77,312 KB
testcase_30 AC 121 ms
80,256 KB
testcase_31 AC 63 ms
77,308 KB
testcase_32 AC 139 ms
78,532 KB
testcase_33 AC 156 ms
79,616 KB
testcase_34 AC 79 ms
80,100 KB
testcase_35 AC 84 ms
78,656 KB
testcase_36 AC 285 ms
82,560 KB
testcase_37 AC 115 ms
76,416 KB
testcase_38 AC 106 ms
76,672 KB
testcase_39 AC 213 ms
80,512 KB
testcase_40 AC 234 ms
81,516 KB
testcase_41 AC 122 ms
82,224 KB
testcase_42 AC 145 ms
77,360 KB
testcase_43 AC 156 ms
77,904 KB
testcase_44 AC 82 ms
76,580 KB
testcase_45 AC 123 ms
79,424 KB
testcase_46 AC 58 ms
66,176 KB
testcase_47 AC 496 ms
92,032 KB
testcase_48 AC 56 ms
65,280 KB
testcase_49 AC 57 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int, input().split())
lsPOC = [[] for i in range(300)]
mod = 10**9+7
for i in range(M):
    P,O,C = map(int, input().split())
    P -= 1
    O -= 1
    lsPOC[P].append((O,C))
dp = [[0]*300 for i in range(K+1)]
dp[0] = [1]*300
for i in range(1,N):
    dp2 = [[0]*300 for i in range(K+1)]
    for j in range(300):
        for q,c in lsPOC[j]:
            for k in range(K+1):
                if c+k <= K:
                    dp2[c+k][q] += dp[k][j]
                    dp2[c+k][q] %= mod
    dp = dp2
print(sum(dp[K])%mod)
0