結果

問題 No.1052 電子機器X
ユーザー koba-e964koba-e964
提出日時 2021-09-27 01:51:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 53,160 KB
最終ジャッジ日時 2024-07-05 17:00:38
合計ジャッジ時間 1,939 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,140 KB
testcase_01 WA -
testcase_02 AC 35 ms
52,192 KB
testcase_03 AC 35 ms
51,804 KB
testcase_04 AC 37 ms
52,464 KB
testcase_05 AC 36 ms
53,092 KB
testcase_06 WA -
testcase_07 AC 37 ms
51,944 KB
testcase_08 AC 37 ms
52,204 KB
testcase_09 WA -
testcase_10 AC 36 ms
53,160 KB
testcase_11 AC 37 ms
52,232 KB
testcase_12 AC 36 ms
51,876 KB
testcase_13 WA -
testcase_14 AC 36 ms
52,360 KB
testcase_15 AC 37 ms
51,884 KB
testcase_16 AC 36 ms
52,220 KB
testcase_17 AC 35 ms
52,436 KB
testcase_18 AC 36 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

n, k = map(int, input().split())
if n % 2 == 0:
    print(min(n / 2, k + 1))
else:
    print(min(n, k + 1))
0