結果

問題 No.1052 電子機器X
ユーザー roarisroaris
提出日時 2020-05-15 23:16:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 206 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 53,776 KB
最終ジャッジ日時 2024-09-19 13:22:58
合計ジャッジ時間 1,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,372 KB
testcase_01 AC 35 ms
52,904 KB
testcase_02 AC 34 ms
52,360 KB
testcase_03 AC 32 ms
52,064 KB
testcase_04 AC 35 ms
52,132 KB
testcase_05 AC 34 ms
52,140 KB
testcase_06 AC 33 ms
52,632 KB
testcase_07 AC 33 ms
52,224 KB
testcase_08 AC 34 ms
52,500 KB
testcase_09 AC 33 ms
52,136 KB
testcase_10 AC 34 ms
53,776 KB
testcase_11 AC 35 ms
51,552 KB
testcase_12 AC 34 ms
52,144 KB
testcase_13 AC 34 ms
53,764 KB
testcase_14 AC 33 ms
53,204 KB
testcase_15 AC 34 ms
52,824 KB
testcase_16 AC 34 ms
53,212 KB
testcase_17 AC 33 ms
53,152 KB
testcase_18 AC 33 ms
52,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if K<N-K:
    print(K+1)
else:
    if K%2==(N-K)%2:
        if K%2==0:
            print(N//2)
        else:
            print(N-N//2)
    else:
        print(min(N, K+1))
0