結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー 37zigen37zigen
提出日時 2020-02-18 15:38:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-10-06 15:35:10
合計ジャッジ時間 5,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,156 KB
testcase_01 AC 98 ms
39,868 KB
testcase_02 AC 116 ms
41,108 KB
testcase_03 AC 113 ms
41,456 KB
testcase_04 AC 104 ms
40,044 KB
testcase_05 AC 100 ms
39,800 KB
testcase_06 AC 103 ms
39,776 KB
testcase_07 AC 117 ms
41,088 KB
testcase_08 AC 103 ms
39,916 KB
testcase_09 AC 103 ms
39,960 KB
testcase_10 AC 121 ms
41,252 KB
testcase_11 AC 114 ms
40,968 KB
testcase_12 AC 118 ms
41,072 KB
testcase_13 AC 115 ms
41,072 KB
testcase_14 AC 116 ms
41,444 KB
testcase_15 AC 102 ms
40,036 KB
testcase_16 AC 111 ms
41,280 KB
testcase_17 AC 99 ms
39,996 KB
testcase_18 AC 100 ms
39,988 KB
testcase_19 AC 100 ms
40,384 KB
testcase_20 AC 113 ms
40,944 KB
testcase_21 AC 102 ms
39,860 KB
testcase_22 AC 109 ms
41,136 KB
testcase_23 AC 117 ms
41,132 KB
testcase_24 AC 112 ms
40,716 KB
testcase_25 AC 120 ms
41,108 KB
testcase_26 AC 115 ms
41,112 KB
testcase_27 AC 98 ms
39,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int K=sc.nextInt();
		if(K==0||K>N) {
			System.out.println(0);
			return;
		}
		System.out.println(K==N-K+1?N-1:N-2);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0