結果

問題 No.1111 コード進行
ユーザー ntudantuda
提出日時 2024-11-14 21:24:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 395 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 152,800 KB
最終ジャッジ日時 2024-11-14 21:24:37
合計ジャッジ時間 7,533 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 41 ms
55,168 KB
testcase_06 AC 55 ms
67,200 KB
testcase_07 AC 59 ms
68,992 KB
testcase_08 AC 59 ms
64,640 KB
testcase_09 AC 52 ms
64,384 KB
testcase_10 AC 54 ms
68,608 KB
testcase_11 AC 53 ms
63,616 KB
testcase_12 AC 58 ms
68,224 KB
testcase_13 AC 50 ms
64,000 KB
testcase_14 AC 63 ms
72,448 KB
testcase_15 AC 49 ms
62,080 KB
testcase_16 AC 57 ms
68,608 KB
testcase_17 AC 48 ms
66,688 KB
testcase_18 AC 45 ms
59,648 KB
testcase_19 AC 40 ms
54,016 KB
testcase_20 AC 47 ms
61,824 KB
testcase_21 AC 45 ms
59,008 KB
testcase_22 AC 53 ms
70,656 KB
testcase_23 AC 53 ms
65,152 KB
testcase_24 AC 50 ms
65,408 KB
testcase_25 AC 63 ms
74,240 KB
testcase_26 WA -
testcase_27 AC 50 ms
61,184 KB
testcase_28 AC 79 ms
81,664 KB
testcase_29 AC 68 ms
77,800 KB
testcase_30 WA -
testcase_31 AC 52 ms
73,600 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 70 ms
78,392 KB
testcase_35 AC 79 ms
79,988 KB
testcase_36 AC 157 ms
82,820 KB
testcase_37 AC 91 ms
76,828 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 91 ms
82,492 KB
testcase_42 AC 109 ms
77,736 KB
testcase_43 WA -
testcase_44 AC 70 ms
76,884 KB
testcase_45 AC 86 ms
79,572 KB
testcase_46 WA -
testcase_47 AC 783 ms
128,108 KB
testcase_48 AC 56 ms
72,800 KB
testcase_49 AC 60 ms
72,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N, M, K = map(int, input().split())
PQC = [list(map(int, input().split())) for _ in range(M)]
dp = [([1] + [0] * K) for _ in range(301)]
for i in range(N - 1):
    dp2 = [[0] * (K + 1) for _ in range(301)]
    for p, q, c in PQC:
        for i in range(K - c + 1):
            dp2[q][i + c] += dp[p][i]
    dp = dp2
ans = 0
for i in range(301):
    ans += dp[i][-1]
print(ans)
0