結果

問題 No.1052 電子機器X
ユーザー non3kzxnon3kzx
提出日時 2020-05-22 17:35:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 509 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 50,208 KB
最終ジャッジ日時 2024-10-05 02:22:15
合計ジャッジ時間 3,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,936 KB
testcase_01 AC 46 ms
49,880 KB
testcase_02 AC 45 ms
50,108 KB
testcase_03 AC 47 ms
50,208 KB
testcase_04 AC 47 ms
50,176 KB
testcase_05 AC 45 ms
50,056 KB
testcase_06 AC 44 ms
50,060 KB
testcase_07 AC 45 ms
50,188 KB
testcase_08 AC 45 ms
50,180 KB
testcase_09 AC 45 ms
50,000 KB
testcase_10 AC 45 ms
50,164 KB
testcase_11 AC 46 ms
49,772 KB
testcase_12 AC 48 ms
49,980 KB
testcase_13 AC 46 ms
49,904 KB
testcase_14 AC 45 ms
49,964 KB
testcase_15 AC 45 ms
50,092 KB
testcase_16 AC 45 ms
49,756 KB
testcase_17 AC 45 ms
49,964 KB
testcase_18 AC 44 ms
49,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {

		BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
		String[] str = reader.readLine().split(" ");
		int N = Integer.parseInt(str[0]);
		int K = Integer.parseInt(str[1]);
		if (N % 2 == 1) {
			int ans = Math.min(N, 1+K);
			System.out.println(ans);
		}
		else {
			int ans = Math.min(N/2, 1+K);
			System.out.println(ans);
		}


	}
}
0