結果

問題 No.561 東京と京都
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-20 21:12:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 3,230 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 42,292 KB
最終ジャッジ日時 2024-04-25 21:19:50
合計ジャッジ時間 6,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,296 KB
testcase_01 AC 112 ms
41,528 KB
testcase_02 AC 98 ms
41,440 KB
testcase_03 AC 103 ms
40,196 KB
testcase_04 AC 109 ms
39,904 KB
testcase_05 AC 119 ms
41,476 KB
testcase_06 AC 109 ms
40,052 KB
testcase_07 AC 110 ms
40,268 KB
testcase_08 AC 121 ms
41,336 KB
testcase_09 AC 119 ms
40,804 KB
testcase_10 AC 117 ms
41,216 KB
testcase_11 AC 125 ms
40,696 KB
testcase_12 AC 137 ms
41,336 KB
testcase_13 AC 130 ms
41,964 KB
testcase_14 AC 134 ms
42,056 KB
testcase_15 AC 130 ms
42,292 KB
testcase_16 AC 130 ms
41,628 KB
testcase_17 AC 132 ms
42,040 KB
testcase_18 AC 136 ms
41,352 KB
testcase_19 AC 138 ms
40,864 KB
testcase_20 AC 129 ms
40,936 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