結果

問題 No.561 東京と京都
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 23:19:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 5,121 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-11-08 05:49:24
合計ジャッジ時間 7,097 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,276 KB
testcase_01 AC 126 ms
41,488 KB
testcase_02 AC 116 ms
40,116 KB
testcase_03 AC 129 ms
41,368 KB
testcase_04 AC 134 ms
41,408 KB
testcase_05 AC 135 ms
41,248 KB
testcase_06 AC 131 ms
41,072 KB
testcase_07 AC 131 ms
41,408 KB
testcase_08 AC 129 ms
41,360 KB
testcase_09 WA -
testcase_10 AC 132 ms
41,340 KB
testcase_11 WA -
testcase_12 AC 141 ms
41,600 KB
testcase_13 AC 158 ms
41,480 KB
testcase_14 AC 151 ms
41,736 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