結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,192 KB
testcase_01 AC 122 ms
54,020 KB
testcase_02 AC 124 ms
54,168 KB
testcase_03 AC 111 ms
52,868 KB
testcase_04 AC 120 ms
54,092 KB
testcase_05 AC 123 ms
54,276 KB
testcase_06 AC 121 ms
54,088 KB
testcase_07 AC 108 ms
53,168 KB
testcase_08 AC 123 ms
54,280 KB
testcase_09 WA -
testcase_10 AC 127 ms
54,028 KB
testcase_11 WA -
testcase_12 AC 131 ms
54,172 KB
testcase_13 AC 138 ms
54,204 KB
testcase_14 AC 135 ms
54,372 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