結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-13 17:51:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-05-07 08:18:49
合計ジャッジ時間 5,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,944 KB
testcase_01 AC 111 ms
41,256 KB
testcase_02 AC 110 ms
41,092 KB
testcase_03 AC 109 ms
40,824 KB
testcase_04 AC 110 ms
41,448 KB
testcase_05 AC 102 ms
40,356 KB
testcase_06 AC 114 ms
41,084 KB
testcase_07 AC 109 ms
41,216 KB
testcase_08 AC 109 ms
41,192 KB
testcase_09 AC 109 ms
40,932 KB
testcase_10 AC 108 ms
41,260 KB
testcase_11 AC 111 ms
41,032 KB
testcase_12 AC 96 ms
39,828 KB
testcase_13 AC 108 ms
41,060 KB
testcase_14 AC 94 ms
39,588 KB
testcase_15 AC 108 ms
41,028 KB
testcase_16 AC 98 ms
39,944 KB
testcase_17 AC 110 ms
41,080 KB
testcase_18 AC 108 ms
40,836 KB
testcase_19 AC 117 ms
41,216 KB
testcase_20 AC 105 ms
40,088 KB
testcase_21 AC 117 ms
41,036 KB
testcase_22 AC 115 ms
41,348 KB
testcase_23 AC 100 ms
39,948 KB
testcase_24 AC 118 ms
41,088 KB
testcase_25 AC 109 ms
41,048 KB
testcase_26 AC 107 ms
40,144 KB
testcase_27 AC 109 ms
40,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		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 (k==n/2+1) {System.out.println(n-1);}
			else {System.out.println(n-2);}
		}
	}
}
0