結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー shirahamashirahama
提出日時 2017-06-07 18:09:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 54,576 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-23 18:58:47
合計ジャッジ時間 1,241 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 WA -
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 WA -
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 1 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 1 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 WA -
testcase_18 AC 1 ms
4,348 KB
testcase_19 WA -
testcase_20 AC 1 ms
4,348 KB
testcase_21 WA -
testcase_22 AC 2 ms
4,348 KB
testcase_23 WA -
testcase_24 AC 1 ms
4,348 KB
testcase_25 WA -
testcase_26 AC 1 ms
4,348 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(void){
    int n;
    int k;
 
    cin>>n>>k; 
    if (k==0){
        cout << 0;
    }
    else if (k>n){
        cout << 0;
    }
    else if ((n+1)/k == 2){
        cout << n-1;
    }
    else if (k<n){
        cout << n-2;
    }
}
0