結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
81,484 KB
testcase_01 AC 111 ms
78,296 KB
testcase_02 AC 283 ms
88,724 KB
testcase_03 AC 196 ms
83,544 KB
testcase_04 AC 120 ms
77,664 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 307 ms
87,988 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 311 ms
87,760 KB
testcase_19 AC 313 ms
88,284 KB
testcase_20 AC 303 ms
88,036 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 47 ms
64,668 KB
testcase_27 WA -
testcase_28 AC 43 ms
62,364 KB
testcase_29 AC 57 ms
69,488 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 47 ms
63,872 KB
testcase_33 AC 69 ms
73,592 KB
testcase_34 AC 57 ms
70,312 KB
testcase_35 AC 76 ms
77,300 KB
testcase_36 AC 60 ms
70,492 KB
testcase_37 AC 89 ms
77,452 KB
testcase_38 AC 104 ms
81,740 KB
testcase_39 AC 177 ms
83,660 KB
testcase_40 AC 81 ms
77,804 KB
testcase_41 AC 36 ms
52,472 KB
testcase_42 AC 35 ms
52,144 KB
testcase_43 AC 37 ms
52,412 KB
testcase_44 AC 34 ms
52,960 KB
testcase_45 AC 33 ms
52,800 KB
testcase_46 AC 33 ms
53,236 KB
testcase_47 AC 33 ms
52,348 KB
testcase_48 WA -
testcase_49 AC 34 ms
52,744 KB
testcase_50 AC 32 ms
52,376 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 33 ms
52,676 KB
testcase_54 AC 33 ms
52,428 KB
testcase_55 AC 35 ms
52,088 KB
testcase_56 AC 34 ms
51,900 KB
testcase_57 AC 33 ms
52,188 KB
testcase_58 AC 32 ms
52,956 KB
testcase_59 AC 33 ms
52,676 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[0])
    info.sort(key=lambda e: e[1])

    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