結果

問題 No.561 東京と京都
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-20 21:01:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 754 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-04-25 21:18:51
合計ジャッジ時間 7,522 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,212 KB
testcase_01 AC 125 ms
53,880 KB
testcase_02 AC 121 ms
54,008 KB
testcase_03 AC 124 ms
54,132 KB
testcase_04 AC 128 ms
53,908 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 111 ms
53,144 KB
testcase_09 AC 124 ms
54,020 KB
testcase_10 AC 127 ms
53,860 KB
testcase_11 AC 136 ms
54,128 KB
testcase_12 AC 137 ms
54,024 KB
testcase_13 AC 148 ms
54,256 KB
testcase_14 AC 139 ms
54,348 KB
testcase_15 AC 138 ms
54,044 KB
testcase_16 AC 139 ms
54,152 KB
testcase_17 AC 142 ms
54,352 KB
testcase_18 AC 141 ms
54,360 KB
testcase_19 AC 147 ms
54,528 KB
testcase_20 AC 144 ms
54,280 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;

        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