結果

問題 No.844 split game
ユーザー shotoyooshotoyoo
提出日時 2021-09-02 23:23:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,560 KB
最終ジャッジ日時 2024-05-07 19:21:31
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
80,896 KB
testcase_01 AC 97 ms
86,784 KB
testcase_02 AC 126 ms
84,224 KB
testcase_03 AC 116 ms
87,424 KB
testcase_04 AC 83 ms
80,896 KB
testcase_05 AC 142 ms
88,192 KB
testcase_06 AC 83 ms
81,280 KB
testcase_07 AC 84 ms
83,968 KB
testcase_08 AC 74 ms
79,232 KB
testcase_09 AC 106 ms
80,672 KB
testcase_10 AC 164 ms
87,424 KB
testcase_11 AC 170 ms
89,984 KB
testcase_12 AC 118 ms
80,384 KB
testcase_13 AC 91 ms
79,360 KB
testcase_14 AC 105 ms
84,864 KB
testcase_15 AC 165 ms
91,188 KB
testcase_16 AC 172 ms
91,560 KB
testcase_17 AC 162 ms
91,392 KB
testcase_18 AC 160 ms
91,136 KB
testcase_19 AC 169 ms
91,392 KB
testcase_20 AC 176 ms
91,404 KB
testcase_21 AC 156 ms
91,264 KB
testcase_22 AC 173 ms
91,264 KB
testcase_23 AC 58 ms
69,760 KB
testcase_24 AC 65 ms
77,824 KB
testcase_25 AC 51 ms
70,784 KB
testcase_26 AC 55 ms
67,968 KB
testcase_27 AC 56 ms
73,216 KB
testcase_28 AC 51 ms
64,768 KB
testcase_29 AC 69 ms
77,440 KB
testcase_30 AC 66 ms
77,568 KB
testcase_31 AC 58 ms
73,984 KB
testcase_32 AC 57 ms
69,120 KB
testcase_33 AC 56 ms
76,288 KB
testcase_34 AC 50 ms
71,040 KB
testcase_35 AC 58 ms
76,544 KB
testcase_36 AC 52 ms
72,704 KB
testcase_37 AC 62 ms
76,416 KB
testcase_38 AC 78 ms
77,824 KB
testcase_39 AC 108 ms
81,024 KB
testcase_40 AC 77 ms
81,536 KB
testcase_41 AC 35 ms
52,076 KB
testcase_42 AC 33 ms
52,352 KB
testcase_43 AC 36 ms
51,712 KB
testcase_44 AC 35 ms
51,968 KB
testcase_45 AC 38 ms
51,840 KB
testcase_46 AC 32 ms
52,096 KB
testcase_47 AC 32 ms
51,840 KB
testcase_48 AC 33 ms
51,840 KB
testcase_49 AC 35 ms
51,712 KB
testcase_50 AC 32 ms
51,968 KB
testcase_51 AC 33 ms
51,968 KB
testcase_52 AC 34 ms
51,840 KB
testcase_53 AC 35 ms
51,840 KB
testcase_54 AC 41 ms
51,968 KB
testcase_55 AC 36 ms
52,096 KB
testcase_56 AC 37 ms
51,968 KB
testcase_57 AC 33 ms
51,840 KB
testcase_58 AC 32 ms
52,224 KB
testcase_59 AC 34 ms
52,096 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