結果

問題 No.561 東京と京都
ユーザー tentententen
提出日時 2020-09-07 23:05:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 77,420 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-05-07 00:19:17
合計ジャッジ時間 5,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
39,828 KB
testcase_01 AC 108 ms
40,684 KB
testcase_02 AC 110 ms
41,024 KB
testcase_03 AC 96 ms
39,812 KB
testcase_04 AC 107 ms
41,224 KB
testcase_05 AC 110 ms
40,836 KB
testcase_06 AC 102 ms
39,996 KB
testcase_07 AC 111 ms
41,260 KB
testcase_08 AC 110 ms
40,864 KB
testcase_09 AC 113 ms
40,980 KB
testcase_10 AC 107 ms
39,692 KB
testcase_11 AC 118 ms
41,580 KB
testcase_12 AC 123 ms
41,108 KB
testcase_13 AC 121 ms
41,060 KB
testcase_14 AC 129 ms
41,340 KB
testcase_15 AC 133 ms
41,140 KB
testcase_16 AC 126 ms
40,448 KB
testcase_17 AC 140 ms
41,180 KB
testcase_18 AC 131 ms
41,240 KB
testcase_19 AC 127 ms
41,412 KB
testcase_20 AC 130 ms
41,112 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