結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-27 01:43:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-10-12 04:24:08
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,280 KB
testcase_01 AC 127 ms
40,864 KB
testcase_02 AC 127 ms
41,288 KB
testcase_03 AC 123 ms
40,892 KB
testcase_04 AC 126 ms
41,104 KB
testcase_05 AC 125 ms
41,100 KB
testcase_06 AC 112 ms
39,956 KB
testcase_07 AC 128 ms
40,976 KB
testcase_08 AC 113 ms
39,848 KB
testcase_09 AC 126 ms
41,232 KB
testcase_10 AC 126 ms
41,152 KB
testcase_11 AC 112 ms
39,736 KB
testcase_12 AC 111 ms
40,212 KB
testcase_13 AC 127 ms
41,040 KB
testcase_14 AC 125 ms
41,264 KB
testcase_15 AC 127 ms
41,156 KB
testcase_16 AC 127 ms
41,376 KB
testcase_17 AC 127 ms
41,232 KB
testcase_18 AC 130 ms
40,944 KB
testcase_19 AC 125 ms
40,968 KB
testcase_20 AC 120 ms
41,324 KB
testcase_21 AC 131 ms
41,040 KB
testcase_22 AC 131 ms
41,128 KB
testcase_23 AC 135 ms
41,496 KB
testcase_24 AC 127 ms
41,124 KB
testcase_25 AC 126 ms
41,284 KB
testcase_26 AC 125 ms
41,056 KB
testcase_27 AC 127 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        long n = in.nextLong();
        long k = in.nextLong();

        long ans = 0;
        if(!(k == 0 || k > n )) {
            long mid = (n+1) / 2;
            if(mid != k) ans = n - 2;
            else if(mid == k) {
                if(n % 2 == 0) ans = n - 2;
                else ans = n - 1;
            }
        }

        System.out.println(ans);
    }
}
0