結果

問題 No.561 東京と京都
ユーザー rfcugb_tgvihnrfcugb_tgvihn
提出日時 2018-02-12 13:52:36
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 57,436 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 08:31:21
合計ジャッジ時間 1,153 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cmath>
using namespace std;

typedef long long ll;
int main(){
  int n,D;
  cin>>n>>D;
  ll T,K,tokyo,kyoto;
  cin>>tokyo>>kyoto;//初期化
  kyoto-=D;
  for(int i=1;i<n;i++){
    cin>>T>>K;
    tokyo=T+max(tokyo,kyoto-D);
    kyoto=K+max(tokyo-D,kyoto);
  }
  cout<<max(tokyo,kyoto)<<"\n";

}
0