結果

問題 No.844 split game
ユーザー shotoyooshotoyoo
提出日時 2021-09-02 23:20:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 539 bytes
コンパイル時間 933 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-05-07 19:18:41
合計ジャッジ時間 8,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
80,896 KB
testcase_01 AC 91 ms
86,784 KB
testcase_02 AC 122 ms
84,352 KB
testcase_03 AC 113 ms
87,424 KB
testcase_04 AC 85 ms
80,780 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 171 ms
91,264 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 161 ms
91,392 KB
testcase_19 AC 169 ms
91,264 KB
testcase_20 AC 164 ms
91,136 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 59 ms
67,712 KB
testcase_27 WA -
testcase_28 AC 53 ms
64,896 KB
testcase_29 AC 64 ms
74,112 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 55 ms
66,560 KB
testcase_33 AC 66 ms
76,416 KB
testcase_34 AC 57 ms
71,296 KB
testcase_35 AC 69 ms
76,672 KB
testcase_36 AC 52 ms
73,088 KB
testcase_37 AC 68 ms
76,544 KB
testcase_38 AC 88 ms
77,952 KB
testcase_39 AC 108 ms
81,060 KB
testcase_40 AC 85 ms
81,792 KB
testcase_41 AC 34 ms
51,968 KB
testcase_42 AC 31 ms
51,712 KB
testcase_43 AC 31 ms
51,712 KB
testcase_44 AC 32 ms
52,224 KB
testcase_45 AC 33 ms
51,712 KB
testcase_46 AC 32 ms
52,096 KB
testcase_47 AC 34 ms
52,224 KB
testcase_48 WA -
testcase_49 AC 32 ms
51,968 KB
testcase_50 AC 32 ms
51,968 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 32 ms
52,096 KB
testcase_54 AC 31 ms
52,096 KB
testcase_55 AC 33 ms
52,096 KB
testcase_56 AC 34 ms
52,096 KB
testcase_57 AC 35 ms
52,352 KB
testcase_58 AC 36 ms
51,968 KB
testcase_59 AC 33 ms
52,224 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)
for i in range(1,n+1):
    val = 0
    for p,j in ns[i]:
        val = max(val, dp[j]+p)
    if i<n:
        val -= a
    dp[i] = val
ans = max(dp)
print(ans)
0