結果

問題 No.561 東京と京都
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-15 11:47:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-11-25 09:25:45
合計ジャッジ時間 1,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,612 KB
testcase_01 AC 34 ms
53,168 KB
testcase_02 AC 34 ms
53,448 KB
testcase_03 AC 32 ms
51,936 KB
testcase_04 AC 34 ms
52,684 KB
testcase_05 AC 32 ms
51,904 KB
testcase_06 AC 35 ms
52,320 KB
testcase_07 AC 32 ms
53,184 KB
testcase_08 AC 33 ms
52,784 KB
testcase_09 AC 38 ms
53,048 KB
testcase_10 AC 36 ms
53,256 KB
testcase_11 AC 33 ms
53,220 KB
testcase_12 AC 35 ms
53,464 KB
testcase_13 AC 33 ms
53,036 KB
testcase_14 AC 33 ms
52,816 KB
testcase_15 AC 34 ms
52,824 KB
testcase_16 AC 35 ms
54,028 KB
testcase_17 AC 35 ms
52,080 KB
testcase_18 AC 34 ms
52,736 KB
testcase_19 AC 37 ms
52,084 KB
testcase_20 AC 36 ms
52,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
TK = []
for i in range(n):
    t, k = map(int, input().split())
    TK.append((t, k))

dp = [0, 0]
for i, (t, k) in enumerate(TK):
    nx = [0, 0]
    if i == 0:
        nx[0] = t
        nx[1] = k-d
    else:
        nx[0] = max(dp[0]+t, dp[1]+t-d)
        nx[1] = max(dp[0]+k-d, dp[1]+k)
    dp = nx
print(max(dp))
0