結果

問題 No.561 東京と京都
ユーザー tentententen
提出日時 2020-09-07 23:05:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 4,406 ms
コンパイル使用メモリ 84,072 KB
実行使用メモリ 42,032 KB
最終ジャッジ日時 2024-11-29 11:31:00
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int d = sc.nextInt();
    	int prevT = sc.nextInt();
    	int prevK = sc.nextInt() - d;
    	for (int i = 1; i < n; i++) {
    	    int nextT = sc.nextInt() + Math.max(prevT, prevK - d);
    	    int nextK = sc.nextInt() + Math.max(prevT - d, prevK);
    	    prevT = nextT;
    	    prevK = nextK;
    	}
    	System.out.println(Math.max(prevT, prevK));
	}
}
0