結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 20:37:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 3,149 ms
コンパイル使用メモリ 76,752 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-11-23 16:49:55
合計ジャッジ時間 7,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,012 KB
testcase_01 AC 123 ms
41,068 KB
testcase_02 AC 124 ms
41,184 KB
testcase_03 AC 117 ms
40,768 KB
testcase_04 AC 124 ms
41,340 KB
testcase_05 AC 110 ms
39,560 KB
testcase_06 AC 106 ms
39,904 KB
testcase_07 AC 113 ms
40,628 KB
testcase_08 AC 114 ms
41,016 KB
testcase_09 AC 101 ms
40,184 KB
testcase_10 AC 101 ms
40,000 KB
testcase_11 AC 121 ms
41,232 KB
testcase_12 AC 125 ms
41,104 KB
testcase_13 AC 119 ms
40,328 KB
testcase_14 AC 120 ms
41,232 KB
testcase_15 AC 110 ms
39,920 KB
testcase_16 AC 114 ms
39,920 KB
testcase_17 AC 120 ms
40,432 KB
testcase_18 AC 128 ms
41,396 KB
testcase_19 AC 121 ms
41,096 KB
testcase_20 AC 118 ms
40,720 KB
testcase_21 AC 120 ms
41,252 KB
testcase_22 AC 123 ms
40,808 KB
testcase_23 AC 124 ms
40,852 KB
testcase_24 AC 122 ms
41,212 KB
testcase_25 AC 127 ms
41,324 KB
testcase_26 AC 122 ms
40,944 KB
testcase_27 AC 107 ms
39,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con521 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int n = s.nextInt() , k = s.nextInt();
		s.close();

		if(k == 0 || k > n){
			System.out.println(0);
		}else if(n % 2 == 1 && k == (n+1)/2){
			System.out.println(n-1);
		}else{
			System.out.println(n-2);
		}

	}

}
0