結果

問題 No.561 東京と京都
コンテスト
ユーザー titia
提出日時 2024-04-16 19:09:37
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 21 ms / 2,000 ms
+ 123µs
コード長 249 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 57 ms
コンパイル使用メモリ 15,360 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2026-09-11 16:42:33
合計ジャッジ時間 2,029 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
input = sys.stdin.readline

N,D=map(int,input().split())

DP=[0,-10**100]

for i in range(N):
    NDP=[0,0]
    t,k=map(int,input().split())

    NDP[0]=max(DP[0]+t,DP[1]+t-D)
    NDP[1]=max(DP[1]+k,DP[0]+k-D)

    DP=NDP

print(max(DP))
0