結果

問題 No.561 東京と京都
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 23:19:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 3,292 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-04-25 18:21:17
合計ジャッジ時間 6,350 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,212 KB
testcase_01 AC 108 ms
52,764 KB
testcase_02 AC 105 ms
53,040 KB
testcase_03 AC 107 ms
53,044 KB
testcase_04 AC 104 ms
53,004 KB
testcase_05 AC 124 ms
54,044 KB
testcase_06 AC 114 ms
52,888 KB
testcase_07 AC 116 ms
54,208 KB
testcase_08 AC 118 ms
54,092 KB
testcase_09 WA -
testcase_10 AC 121 ms
54,192 KB
testcase_11 WA -
testcase_12 AC 130 ms
54,464 KB
testcase_13 AC 131 ms
54,044 KB
testcase_14 AC 132 ms
54,352 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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, more, result = 0, resultT = -d, resultK = -d;
        boolean tokyo = true;
        for(int i = 0; i < n; i++) {
            t = sc.nextInt();
            k = sc.nextInt();
            if( tokyo ) {
                more = max(t, k - d);
                if(t != k - d && more == k - d) tokyo = false;
                result += more;
            } else {
                more = max(t - d, k);
                if(t - d != k && more == t - d) tokyo = true;
                result += more;
            }
            resultT += t;
            resultK += k;
        }

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