結果

問題 No.844 split game
ユーザー tamatotamato
提出日時 2020-02-25 23:06:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-10-13 14:38:35
合計ジャッジ時間 12,106 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
80,920 KB
testcase_01 AC 124 ms
78,792 KB
testcase_02 AC 323 ms
88,960 KB
testcase_03 AC 219 ms
83,680 KB
testcase_04 AC 134 ms
77,632 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 341 ms
88,704 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 344 ms
88,292 KB
testcase_19 AC 343 ms
88,448 KB
testcase_20 AC 351 ms
88,064 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 54 ms
64,192 KB
testcase_27 WA -
testcase_28 AC 50 ms
62,208 KB
testcase_29 AC 64 ms
69,428 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 52 ms
63,872 KB
testcase_33 AC 82 ms
77,568 KB
testcase_34 AC 65 ms
69,632 KB
testcase_35 AC 85 ms
78,080 KB
testcase_36 AC 66 ms
71,424 KB
testcase_37 AC 101 ms
77,684 KB
testcase_38 AC 153 ms
81,944 KB
testcase_39 AC 277 ms
84,636 KB
testcase_40 AC 103 ms
78,108 KB
testcase_41 AC 38 ms
52,352 KB
testcase_42 AC 38 ms
52,096 KB
testcase_43 AC 38 ms
52,096 KB
testcase_44 AC 39 ms
52,096 KB
testcase_45 AC 39 ms
52,480 KB
testcase_46 AC 38 ms
52,096 KB
testcase_47 AC 39 ms
51,712 KB
testcase_48 WA -
testcase_49 AC 38 ms
52,224 KB
testcase_50 AC 39 ms
51,940 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 38 ms
51,968 KB
testcase_54 AC 38 ms
52,480 KB
testcase_55 AC 38 ms
52,224 KB
testcase_56 AC 38 ms
51,840 KB
testcase_57 AC 37 ms
52,352 KB
testcase_58 AC 38 ms
51,968 KB
testcase_59 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.buffer.readline

    N, M, x = map(int, input().split())
    info = [None] * M
    for i in range(M):
        info[i] = tuple(map(int, input().split()))
    info.sort(key=lambda e: e[1])
    info.sort(key=lambda e: e[0])

    dp = [-x] * (N+2)
    dp[1] = 0
    for l, r, p in info:
        flg = int(r!=N)
        dp[r+1] = max(dp[r+1], dp[l] + p - x * flg)
    print(max(dp))


if __name__ == '__main__':
    main()
0