結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 20:37:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 3,482 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-05-02 22:03:12
合計ジャッジ時間 7,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,280 KB
testcase_01 AC 114 ms
41,216 KB
testcase_02 AC 132 ms
41,752 KB
testcase_03 AC 113 ms
41,640 KB
testcase_04 AC 105 ms
41,000 KB
testcase_05 AC 114 ms
41,264 KB
testcase_06 AC 115 ms
41,264 KB
testcase_07 AC 115 ms
40,024 KB
testcase_08 AC 113 ms
41,384 KB
testcase_09 AC 113 ms
41,824 KB
testcase_10 AC 117 ms
41,216 KB
testcase_11 AC 116 ms
41,416 KB
testcase_12 AC 109 ms
41,468 KB
testcase_13 AC 114 ms
41,496 KB
testcase_14 AC 116 ms
41,336 KB
testcase_15 AC 111 ms
41,444 KB
testcase_16 AC 101 ms
41,264 KB
testcase_17 AC 103 ms
41,152 KB
testcase_18 AC 109 ms
41,264 KB
testcase_19 AC 112 ms
41,132 KB
testcase_20 AC 116 ms
41,612 KB
testcase_21 AC 120 ms
41,516 KB
testcase_22 AC 124 ms
41,464 KB
testcase_23 AC 110 ms
41,260 KB
testcase_24 AC 111 ms
41,136 KB
testcase_25 AC 111 ms
41,228 KB
testcase_26 AC 114 ms
41,772 KB
testcase_27 AC 103 ms
41,260 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