結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー tentententen
提出日時 2021-02-09 08:44:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 73,924 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-07-06 14:11:51
合計ジャッジ時間 7,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,176 KB
testcase_01 WA -
testcase_02 AC 134 ms
54,284 KB
testcase_03 AC 137 ms
53,916 KB
testcase_04 AC 137 ms
53,796 KB
testcase_05 AC 143 ms
54,092 KB
testcase_06 AC 138 ms
54,008 KB
testcase_07 AC 141 ms
53,876 KB
testcase_08 AC 142 ms
54,108 KB
testcase_09 AC 143 ms
53,944 KB
testcase_10 AC 135 ms
53,896 KB
testcase_11 AC 134 ms
54,056 KB
testcase_12 AC 134 ms
54,192 KB
testcase_13 AC 136 ms
53,692 KB
testcase_14 AC 136 ms
54,100 KB
testcase_15 AC 134 ms
53,976 KB
testcase_16 WA -
testcase_17 AC 138 ms
53,944 KB
testcase_18 WA -
testcase_19 AC 136 ms
54,076 KB
testcase_20 WA -
testcase_21 AC 142 ms
53,988 KB
testcase_22 WA -
testcase_23 AC 138 ms
54,132 KB
testcase_24 WA -
testcase_25 AC 136 ms
54,100 KB
testcase_26 WA -
testcase_27 AC 140 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int ans;
        if (k == 0 || k > n) {
            ans = 0;
        } else if (k % 2 == 1 && (k + 1) / 2 == k) {
            ans = n - 1;
        } else {
            ans = n - 2;
        }
        System.out.println(ans);
    }
}
0