結果

問題 No.561 東京と京都
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-20 21:12:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 6,404 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-11-08 09:16:30
合計ジャッジ時間 8,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,944 KB
testcase_01 AC 133 ms
41,196 KB
testcase_02 AC 132 ms
40,868 KB
testcase_03 AC 132 ms
41,140 KB
testcase_04 AC 134 ms
40,892 KB
testcase_05 AC 135 ms
41,264 KB
testcase_06 AC 131 ms
40,996 KB
testcase_07 AC 118 ms
40,160 KB
testcase_08 AC 130 ms
41,072 KB
testcase_09 AC 135 ms
41,080 KB
testcase_10 AC 137 ms
41,072 KB
testcase_11 AC 145 ms
41,336 KB
testcase_12 AC 145 ms
41,400 KB
testcase_13 AC 162 ms
41,452 KB
testcase_14 AC 151 ms
41,628 KB
testcase_15 AC 153 ms
41,304 KB
testcase_16 AC 155 ms
41,464 KB
testcase_17 AC 155 ms
41,176 KB
testcase_18 AC 152 ms
41,528 KB
testcase_19 AC 153 ms
41,544 KB
testcase_20 AC 152 ms
41,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;
import static java.lang.Math.max;

public class No561 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt(), d = sc.nextInt();
        int t, k, beforeT, beforeK;
        int resultT = 0, resultK = 0;
        boolean tokyo = true;

        beforeT = sc.nextInt();
        beforeK = sc.nextInt() - d;
        resultT = beforeT;
        resultK = beforeK;

        for(int i = 0; i < n - 1; i++) {
            t = sc.nextInt();
            k = sc.nextInt();
            resultT = t + max(beforeT, beforeK - d);
            resultK = k + max(beforeK, beforeT - d);
            beforeT = resultT;
            beforeK = resultK;
        }

        System.out.println(max(resultT, resultK));
    }
}
0