結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー AOW_MIRROR_O5AOW_MIRROR_O5
提出日時 2018-03-08 17:18:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 3,089 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 41,908 KB
最終ジャッジ日時 2024-10-05 08:03:31
合計ジャッジ時間 7,131 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,568 KB
testcase_01 AC 113 ms
39,708 KB
testcase_02 AC 108 ms
41,516 KB
testcase_03 AC 114 ms
41,316 KB
testcase_04 AC 115 ms
41,332 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 115 ms
41,324 KB
testcase_09 AC 109 ms
41,308 KB
testcase_10 AC 119 ms
41,196 KB
testcase_11 WA -
testcase_12 AC 115 ms
41,088 KB
testcase_13 AC 109 ms
40,716 KB
testcase_14 AC 105 ms
41,156 KB
testcase_15 AC 104 ms
40,872 KB
testcase_16 AC 104 ms
40,964 KB
testcase_17 WA -
testcase_18 AC 107 ms
40,888 KB
testcase_19 WA -
testcase_20 AC 105 ms
41,180 KB
testcase_21 WA -
testcase_22 AC 107 ms
40,828 KB
testcase_23 WA -
testcase_24 AC 109 ms
41,172 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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(((1+D)/2)==K){
			System.out.println(D-1);
		}
		
		if(K>0 && ((1+D)/2)>K){
			System.out.println(D-2);
		}
    }
}
0