結果

問題 No.561 東京と京都
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 23:11:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 853 bytes
コンパイル時間 3,533 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 42,180 KB
最終ジャッジ日時 2024-11-08 05:49:11
合計ジャッジ時間 7,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,324 KB
testcase_01 AC 133 ms
41,152 KB
testcase_02 AC 133 ms
41,292 KB
testcase_03 AC 135 ms
40,956 KB
testcase_04 AC 137 ms
41,320 KB
testcase_05 AC 131 ms
41,340 KB
testcase_06 AC 121 ms
40,280 KB
testcase_07 AC 134 ms
41,108 KB
testcase_08 AC 136 ms
41,352 KB
testcase_09 WA -
testcase_10 AC 139 ms
41,192 KB
testcase_11 WA -
testcase_12 AC 148 ms
41,404 KB
testcase_13 AC 150 ms
41,532 KB
testcase_14 AC 151 ms
41,484 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, 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;
            }
            resultK += k;
        }
        System.out.println(result < resultK ? resultK : result);
    }
}
0