結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-16 02:13:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 4,744 ms
コンパイル使用メモリ 76,844 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-28 12:14:11
合計ジャッジ時間 8,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,816 KB
testcase_01 AC 128 ms
53,932 KB
testcase_02 AC 125 ms
53,992 KB
testcase_03 AC 127 ms
53,932 KB
testcase_04 AC 113 ms
52,752 KB
testcase_05 AC 125 ms
53,720 KB
testcase_06 AC 114 ms
52,712 KB
testcase_07 AC 128 ms
54,216 KB
testcase_08 AC 129 ms
54,180 KB
testcase_09 AC 129 ms
54,084 KB
testcase_10 AC 130 ms
54,144 KB
testcase_11 AC 125 ms
53,772 KB
testcase_12 AC 134 ms
53,944 KB
testcase_13 AC 131 ms
53,792 KB
testcase_14 AC 130 ms
53,804 KB
testcase_15 AC 130 ms
53,708 KB
testcase_16 AC 128 ms
53,852 KB
testcase_17 AC 128 ms
53,800 KB
testcase_18 AC 132 ms
53,896 KB
testcase_19 AC 136 ms
54,092 KB
testcase_20 AC 135 ms
54,060 KB
testcase_21 AC 134 ms
53,636 KB
testcase_22 AC 127 ms
53,924 KB
testcase_23 AC 129 ms
53,960 KB
testcase_24 AC 126 ms
53,908 KB
testcase_25 AC 131 ms
54,152 KB
testcase_26 AC 126 ms
53,800 KB
testcase_27 AC 126 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class CheeseAndMouse{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        int K = sc.nextInt();
        if(K == 0 || K > N){
            System.out.println(0);
        }else if(N%2 == 1 && K == N/2+1){
            System.out.println(N-1);
        }else{
            System.out.println(N-2);
        }
    }
}
0