結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー AOW_MIRROR_O5AOW_MIRROR_O5
提出日時 2018-03-08 17:30:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 445 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-10-05 08:05:15
合計ジャッジ時間 7,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,656 KB
testcase_01 AC 132 ms
54,064 KB
testcase_02 AC 133 ms
54,148 KB
testcase_03 AC 133 ms
53,456 KB
testcase_04 AC 119 ms
52,632 KB
testcase_05 AC 131 ms
53,868 KB
testcase_06 AC 116 ms
52,700 KB
testcase_07 AC 130 ms
53,488 KB
testcase_08 AC 129 ms
53,944 KB
testcase_09 AC 129 ms
54,108 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 131 ms
54,080 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 130 ms
53,912 KB
testcase_17 AC 129 ms
53,960 KB
testcase_18 AC 127 ms
53,700 KB
testcase_19 AC 129 ms
53,972 KB
testcase_20 AC 131 ms
53,864 KB
testcase_21 AC 134 ms
54,124 KB
testcase_22 AC 133 ms
53,892 KB
testcase_23 AC 133 ms
53,988 KB
testcase_24 AC 133 ms
53,728 KB
testcase_25 AC 132 ms
54,024 KB
testcase_26 AC 132 ms
54,212 KB
testcase_27 AC 130 ms
53,748 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);
		}
		
		if(N%2 == 1){
			if(((1+N)/2)==K){
				System.out.println(N-1);
			}
			if(K>0 && ((1+N)/2)>K){
				System.out.println(N-2);
			}
    	}
		
		if(N%2 == 0){
			System.out.println(N-2);
    	}
    }
}
0