結果

問題 No.561 東京と京都
ユーザー obemaru4012obemaru4012
提出日時 2022-09-06 02:02:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-05-01 03:01:39
合計ジャッジ時間 1,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,804 KB
testcase_01 AC 32 ms
52,212 KB
testcase_02 AC 37 ms
52,620 KB
testcase_03 AC 31 ms
54,264 KB
testcase_04 AC 32 ms
53,232 KB
testcase_05 AC 30 ms
53,228 KB
testcase_06 AC 32 ms
52,208 KB
testcase_07 AC 31 ms
52,924 KB
testcase_08 AC 32 ms
52,436 KB
testcase_09 AC 32 ms
52,832 KB
testcase_10 AC 32 ms
53,004 KB
testcase_11 AC 34 ms
52,808 KB
testcase_12 AC 34 ms
52,460 KB
testcase_13 AC 32 ms
53,508 KB
testcase_14 AC 32 ms
53,076 KB
testcase_15 AC 32 ms
53,016 KB
testcase_16 AC 35 ms
53,848 KB
testcase_17 AC 33 ms
52,768 KB
testcase_18 AC 32 ms
52,692 KB
testcase_19 AC 33 ms
53,420 KB
testcase_20 AC 32 ms
52,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding=utf-8 -*-

if __name__ == "__main__":
    N, D = list(map(int, input().split(" ")))
    DP = []
    for n in range(N):
        DP.append([0, 0])

    for n in range(N):
        T, K = list(map(int, input().split(" ")))
        if n == 0:
            DP[n][0] = T
            DP[n][1] = K - D
        else:
            DP[n][0] = max(T + DP[n - 1][0], (T - D) + DP[n - 1][1])
            DP[n][1] = max(K + DP[n - 1][1], (K - D) + DP[n - 1][0])
    
    print(max(DP[-1]))
0