結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー akitsugu777
提出日時 2019-11-25 14:26:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-13 07:07:00
合計ジャッジ時間 1,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K  = map(int, input().split())

if N % 2 != 0:
    if 0 < K <= N and (N+1)//2 != K:
        print(N-2)
    elif 0 < K <= N and (N+1)//2 == K:
        print(N-1)
    else:
        print(0)

else:
    if 0 < K <= N:
        print(N-2)
    else:
        print(0)
0