結果

問題 No.1052 電子機器X
ユーザー ks2mks2m
提出日時 2020-05-15 21:50:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 434 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 75,416 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-09-19 09:28:32
合計ジャッジ時間 4,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,068 KB
testcase_01 AC 122 ms
41,240 KB
testcase_02 AC 119 ms
41,256 KB
testcase_03 AC 120 ms
40,928 KB
testcase_04 AC 110 ms
40,896 KB
testcase_05 AC 111 ms
41,148 KB
testcase_06 AC 100 ms
40,048 KB
testcase_07 AC 113 ms
41,316 KB
testcase_08 AC 103 ms
40,388 KB
testcase_09 AC 99 ms
40,280 KB
testcase_10 AC 102 ms
40,260 KB
testcase_11 AC 105 ms
41,088 KB
testcase_12 AC 100 ms
39,852 KB
testcase_13 AC 109 ms
41,140 KB
testcase_14 AC 101 ms
39,860 KB
testcase_15 AC 109 ms
41,108 KB
testcase_16 AC 112 ms
41,412 KB
testcase_17 AC 107 ms
41,204 KB
testcase_18 AC 94 ms
39,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		sc.close();

		if (n % 2 == 0) {
			int ans = n / 2;
			int k1 = 1 + k;
			int k2 = n + 1 - k;
			if (k1 < k2) {
				ans -= (k2 - k1) / 2 - 1;
			}
			System.out.println(ans);
		} else {
			System.out.println(Math.min(n, k + 1));
		}
	}
}
0