結果

問題 No.844 split game
ユーザー shotoyooshotoyoo
提出日時 2021-09-02 23:23:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 995 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-11-30 14:35:39
合計ジャッジ時間 7,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
80,976 KB
testcase_01 AC 109 ms
86,924 KB
testcase_02 AC 134 ms
84,284 KB
testcase_03 AC 126 ms
87,128 KB
testcase_04 AC 91 ms
80,768 KB
testcase_05 AC 171 ms
88,108 KB
testcase_06 AC 106 ms
81,024 KB
testcase_07 AC 88 ms
83,792 KB
testcase_08 AC 78 ms
79,420 KB
testcase_09 AC 108 ms
80,300 KB
testcase_10 AC 157 ms
87,424 KB
testcase_11 AC 178 ms
90,240 KB
testcase_12 AC 124 ms
80,252 KB
testcase_13 AC 100 ms
79,076 KB
testcase_14 AC 117 ms
85,060 KB
testcase_15 AC 187 ms
90,912 KB
testcase_16 AC 173 ms
91,648 KB
testcase_17 AC 170 ms
91,248 KB
testcase_18 AC 169 ms
91,412 KB
testcase_19 AC 185 ms
91,560 KB
testcase_20 AC 181 ms
91,116 KB
testcase_21 AC 167 ms
91,088 KB
testcase_22 AC 178 ms
91,648 KB
testcase_23 AC 54 ms
70,144 KB
testcase_24 AC 69 ms
77,440 KB
testcase_25 AC 58 ms
70,784 KB
testcase_26 AC 54 ms
68,224 KB
testcase_27 AC 55 ms
73,472 KB
testcase_28 AC 51 ms
64,640 KB
testcase_29 AC 71 ms
77,772 KB
testcase_30 AC 66 ms
77,644 KB
testcase_31 AC 60 ms
74,240 KB
testcase_32 AC 60 ms
69,248 KB
testcase_33 AC 58 ms
76,196 KB
testcase_34 AC 50 ms
71,296 KB
testcase_35 AC 60 ms
76,316 KB
testcase_36 AC 58 ms
73,088 KB
testcase_37 AC 68 ms
76,416 KB
testcase_38 AC 85 ms
77,948 KB
testcase_39 AC 120 ms
81,176 KB
testcase_40 AC 85 ms
81,464 KB
testcase_41 AC 36 ms
52,336 KB
testcase_42 AC 35 ms
52,352 KB
testcase_43 AC 37 ms
51,968 KB
testcase_44 AC 34 ms
52,224 KB
testcase_45 AC 34 ms
52,224 KB
testcase_46 AC 35 ms
52,352 KB
testcase_47 AC 33 ms
52,352 KB
testcase_48 AC 34 ms
52,352 KB
testcase_49 AC 35 ms
51,968 KB
testcase_50 AC 35 ms
51,968 KB
testcase_51 AC 35 ms
52,352 KB
testcase_52 AC 35 ms
52,608 KB
testcase_53 AC 37 ms
51,712 KB
testcase_54 AC 36 ms
51,968 KB
testcase_55 AC 33 ms
51,968 KB
testcase_56 AC 33 ms
51,840 KB
testcase_57 AC 33 ms
52,364 KB
testcase_58 AC 37 ms
52,224 KB
testcase_59 AC 33 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,m,a = list(map(int, input().split()))
ns = [[(0,0)] for _ in range(n+1)]
for _ in range(m):
    l,r,p = list(map(int, input().split()))
    l -= 1
    ns[r].append((p,l))
dp = [0]*(n+1)
cum = 0
for i in range(1,n+1):
    val = cum
    for p,j in ns[i]:
        val = max(val, dp[j]+p)
    if i<n:
        val -= a
    dp[i] = val
    cum = max(cum, val)
ans = max(dp)
print(ans)
0