結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー hiro_metal_corehiro_metal_core
提出日時 2017-12-13 00:50:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 244 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 818,392 KB
最終ジャッジ日時 2024-12-14 06:59:09
合計ジャッジ時間 12,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 TLE -
testcase_11 RE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 52 ms
10,624 KB
testcase_17 AC 35 ms
10,752 KB
testcase_18 AC 34 ms
10,624 KB
testcase_19 AC 35 ms
10,624 KB
testcase_20 AC 39 ms
11,136 KB
testcase_21 AC 38 ms
11,008 KB
testcase_22 AC 288 ms
49,936 KB
testcase_23 AC 289 ms
49,872 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 35 ms
10,624 KB
testcase_27 AC 33 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

box = list(range(N))

if K == 0 or K > N:
    print(0)
else:
    box[K-1] = None
    box[-K] = None
    count = 0
    for box_in in box:
        if box_in != None:
            count += 1
    print(count)
0