結果

問題 No.844 split game
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-07-07 20:34:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 95,116 KB
最終ジャッジ日時 2024-10-05 09:13:41
合計ジャッジ時間 8,285 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
82,912 KB
testcase_01 AC 111 ms
92,824 KB
testcase_02 AC 153 ms
86,116 KB
testcase_03 AC 143 ms
90,928 KB
testcase_04 AC 103 ms
82,564 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 188 ms
95,052 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 186 ms
95,044 KB
testcase_19 AC 190 ms
94,700 KB
testcase_20 AC 177 ms
95,116 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 79 ms
77,068 KB
testcase_27 WA -
testcase_28 AC 63 ms
69,076 KB
testcase_29 AC 78 ms
78,036 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 64 ms
74,168 KB
testcase_33 AC 71 ms
77,036 KB
testcase_34 AC 68 ms
76,628 KB
testcase_35 AC 72 ms
76,536 KB
testcase_36 AC 69 ms
76,628 KB
testcase_37 AC 76 ms
76,656 KB
testcase_38 AC 92 ms
78,512 KB
testcase_39 AC 118 ms
81,460 KB
testcase_40 AC 93 ms
85,852 KB
testcase_41 AC 36 ms
54,000 KB
testcase_42 AC 36 ms
54,372 KB
testcase_43 AC 36 ms
54,300 KB
testcase_44 AC 35 ms
54,308 KB
testcase_45 AC 35 ms
54,084 KB
testcase_46 AC 35 ms
54,660 KB
testcase_47 AC 35 ms
54,932 KB
testcase_48 WA -
testcase_49 AC 34 ms
54,776 KB
testcase_50 AC 35 ms
53,488 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 39 ms
53,696 KB
testcase_54 AC 39 ms
53,292 KB
testcase_55 AC 40 ms
54,532 KB
testcase_56 AC 35 ms
53,588 KB
testcase_57 AC 36 ms
53,736 KB
testcase_58 AC 35 ms
54,992 KB
testcase_59 AC 36 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

n, m, a = map(int, input().split())
edge = collections.defaultdict(list)
for _ in range(m):
    l, r, p = map(int, input().split())
    edge[l - 1].append((r, p))

dp = [-a] * (n + 1)
dp[0] = 0
for last in range(0, n + 1):
    for nxt, score in edge[last]:
        if nxt == n:
            dp[nxt] = max(dp[nxt], dp[last] + score)
        else:
            dp[nxt] = max(dp[nxt], dp[last] + score - a)

print(max(dp))
0