結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー AOW_MIRROR_O5AOW_MIRROR_O5
提出日時 2018-03-08 17:22:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 3,291 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-10-05 08:04:14
合計ジャッジ時間 6,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,016 KB
testcase_01 AC 94 ms
39,892 KB
testcase_02 AC 100 ms
40,040 KB
testcase_03 AC 112 ms
41,036 KB
testcase_04 AC 98 ms
40,028 KB
testcase_05 AC 96 ms
39,824 KB
testcase_06 AC 109 ms
41,064 KB
testcase_07 AC 107 ms
41,176 KB
testcase_08 AC 97 ms
40,024 KB
testcase_09 AC 98 ms
39,808 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 108 ms
40,932 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 106 ms
40,708 KB
testcase_17 AC 97 ms
39,904 KB
testcase_18 AC 107 ms
41,184 KB
testcase_19 AC 102 ms
39,952 KB
testcase_20 AC 107 ms
41,020 KB
testcase_21 AC 94 ms
40,004 KB
testcase_22 AC 106 ms
41,184 KB
testcase_23 AC 101 ms
40,272 KB
testcase_24 AC 97 ms
40,028 KB
testcase_25 AC 108 ms
40,920 KB
testcase_26 AC 113 ms
41,436 KB
testcase_27 AC 107 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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