結果

問題 No.561 東京と京都
ユーザー tentententen
提出日時 2020-09-07 23:05:03
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,300 KB
testcase_01 AC 105 ms
40,236 KB
testcase_02 AC 95 ms
40,000 KB
testcase_03 AC 113 ms
40,952 KB
testcase_04 AC 102 ms
40,048 KB
testcase_05 AC 101 ms
40,380 KB
testcase_06 AC 100 ms
40,128 KB
testcase_07 AC 110 ms
41,288 KB
testcase_08 AC 113 ms
41,288 KB
testcase_09 AC 128 ms
41,668 KB
testcase_10 AC 118 ms
41,472 KB
testcase_11 AC 122 ms
41,744 KB
testcase_12 AC 127 ms
41,600 KB
testcase_13 AC 127 ms
41,892 KB
testcase_14 AC 127 ms
41,896 KB
testcase_15 AC 127 ms
41,752 KB
testcase_16 AC 130 ms
42,032 KB
testcase_17 AC 147 ms
41,664 KB
testcase_18 AC 132 ms
41,408 KB
testcase_19 AC 136 ms
41,760 KB
testcase_20 AC 125 ms
41,372 KB
権限があれば一括ダウンロードができます

ソースコード

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