結果

問題 No.844 split game
ユーザー neterukunneterukun
提出日時 2019-06-28 23:13:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,348 KB
最終ジャッジ日時 2024-07-02 05:10:10
合計ジャッジ時間 13,755 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 189 ms
20,616 KB
testcase_02 WA -
testcase_03 AC 337 ms
26,976 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 155 ms
18,412 KB
testcase_07 AC 144 ms
18,288 KB
testcase_08 RE -
testcase_09 AC 370 ms
29,508 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 360 ms
29,508 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 WA -
testcase_17 AC 547 ms
37,288 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 575 ms
37,348 KB
testcase_22 AC 542 ms
37,220 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 AC 56 ms
12,544 KB
testcase_28 RE -
testcase_29 WA -
testcase_30 AC 62 ms
13,056 KB
testcase_31 WA -
testcase_32 RE -
testcase_33 AC 69 ms
12,800 KB
testcase_34 WA -
testcase_35 AC 76 ms
13,312 KB
testcase_36 AC 57 ms
12,160 KB
testcase_37 AC 101 ms
14,976 KB
testcase_38 AC 188 ms
19,712 KB
testcase_39 AC 360 ms
29,256 KB
testcase_40 AC 130 ms
16,592 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 29 ms
10,752 KB
testcase_43 RE -
testcase_44 AC 29 ms
10,624 KB
testcase_45 AC 30 ms
10,752 KB
testcase_46 RE -
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 30 ms
10,752 KB
testcase_49 RE -
testcase_50 RE -
testcase_51 AC 29 ms
10,752 KB
testcase_52 AC 30 ms
10,752 KB
testcase_53 WA -
testcase_54 RE -
testcase_55 AC 30 ms
10,752 KB
testcase_56 AC 29 ms
10,752 KB
testcase_57 AC 30 ms
10,752 KB
testcase_58 AC 31 ms
10,624 KB
testcase_59 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter


input = sys.stdin.readline
n, m, a = map(int, input().split())
info = [list(map(int, input().split())) for i in range(m)]

info = sorted(info, key = itemgetter(1))

dp = [0]*(n+1)
end = 0
max_dp = 0
for i in range(1, n + 1):
    if info[end][1] == i:
        while end < m and info[end][1] == i:
            if i == n:
                dp[i] = max(dp[i], max_dp, dp[info[end][0] - 1] + info[end][2])
            else:
                dp[i] = max(dp[i], max_dp - a, dp[info[end][0] - 1] + info[end][2] - a)
            end += 1
        max_dp = max(max_dp, dp[i])
    else:
        dp[i] = max_dp - a
print(max(dp))
0