結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー AOW_MIRROR_O5AOW_MIRROR_O5
提出日時 2018-03-08 17:39:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 2,975 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-10-05 08:05:26
合計ジャッジ時間 6,873 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,140 KB
testcase_01 AC 97 ms
40,084 KB
testcase_02 AC 99 ms
39,896 KB
testcase_03 AC 100 ms
41,052 KB
testcase_04 AC 98 ms
40,016 KB
testcase_05 AC 109 ms
41,276 KB
testcase_06 AC 107 ms
41,000 KB
testcase_07 AC 107 ms
40,748 KB
testcase_08 AC 99 ms
39,908 KB
testcase_09 AC 101 ms
40,980 KB
testcase_10 AC 99 ms
40,312 KB
testcase_11 AC 102 ms
40,044 KB
testcase_12 AC 112 ms
41,100 KB
testcase_13 AC 99 ms
39,880 KB
testcase_14 AC 98 ms
40,308 KB
testcase_15 AC 105 ms
40,908 KB
testcase_16 AC 99 ms
40,028 KB
testcase_17 AC 110 ms
41,020 KB
testcase_18 AC 97 ms
39,856 KB
testcase_19 AC 98 ms
40,300 KB
testcase_20 AC 106 ms
40,768 KB
testcase_21 AC 106 ms
41,332 KB
testcase_22 AC 111 ms
41,052 KB
testcase_23 AC 100 ms
40,920 KB
testcase_24 AC 106 ms
41,208 KB
testcase_25 AC 98 ms
39,984 KB
testcase_26 AC 107 ms
41,208 KB
testcase_27 AC 113 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class paiza7 {
    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 == 0){
			System.out.println(N-2);
		}else{
			if((1+N)/2==K){
				System.out.println(N-1);
			}else{
				System.out.println(N-2);
			}
    	}
    }
}
0