結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー rlangevinrlangevin
提出日時 2024-02-12 21:59:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 53,352 KB
最終ジャッジ日時 2024-09-28 18:12:34
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,352 KB
testcase_01 AC 32 ms
52,196 KB
testcase_02 AC 33 ms
52,448 KB
testcase_03 AC 31 ms
52,016 KB
testcase_04 AC 30 ms
51,940 KB
testcase_05 AC 30 ms
52,704 KB
testcase_06 AC 31 ms
52,344 KB
testcase_07 AC 30 ms
52,836 KB
testcase_08 AC 30 ms
52,016 KB
testcase_09 AC 31 ms
52,204 KB
testcase_10 AC 31 ms
51,828 KB
testcase_11 AC 34 ms
52,880 KB
testcase_12 AC 35 ms
52,336 KB
testcase_13 AC 32 ms
52,312 KB
testcase_14 AC 31 ms
52,864 KB
testcase_15 AC 32 ms
52,912 KB
testcase_16 AC 30 ms
51,876 KB
testcase_17 AC 31 ms
53,012 KB
testcase_18 AC 31 ms
52,592 KB
testcase_19 AC 30 ms
52,892 KB
testcase_20 AC 32 ms
52,468 KB
testcase_21 AC 31 ms
53,036 KB
testcase_22 AC 31 ms
52,140 KB
testcase_23 AC 33 ms
52,640 KB
testcase_24 AC 32 ms
52,484 KB
testcase_25 AC 31 ms
52,532 KB
testcase_26 AC 29 ms
52,024 KB
testcase_27 AC 31 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
if K == 0 or K > N:
	print(0)
elif 2 * K == N + 1:
	print(N - 1)
else:
	print(N - 2)
0