結果

問題 No.561 東京と京都
ユーザー ngtkanangtkana
提出日時 2020-03-16 13:25:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 195,040 KB
最終ジャッジ日時 2025-01-09 07:21:46
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n,D;std::cin>>n>>D;
    lint X=0,Y=-D;
    while(n--){
        lint a,b;std::cin>>a>>b;
        std::tie(X,Y)=std::pair{std::max(X+a,Y-D+b),std::max(X-D+a,Y+b)};
    }
    std::cout<<std::max(X,Y)<<'\n';
}
0