結果

問題 No.1748 Parking Lot
ユーザー merlinmerlin
提出日時 2021-11-19 21:50:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 50,428 KB
最終ジャッジ日時 2024-06-10 08:36:22
合計ジャッジ時間 3,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,744 KB
testcase_01 AC 49 ms
49,968 KB
testcase_02 AC 47 ms
50,280 KB
testcase_03 AC 47 ms
50,024 KB
testcase_04 AC 47 ms
50,004 KB
testcase_05 AC 46 ms
49,804 KB
testcase_06 AC 48 ms
50,276 KB
testcase_07 AC 46 ms
50,200 KB
testcase_08 AC 45 ms
50,080 KB
testcase_09 AC 46 ms
50,316 KB
testcase_10 AC 46 ms
50,096 KB
testcase_11 AC 47 ms
50,228 KB
testcase_12 AC 47 ms
50,304 KB
testcase_13 AC 46 ms
50,088 KB
testcase_14 AC 47 ms
50,116 KB
testcase_15 AC 47 ms
50,028 KB
testcase_16 AC 47 ms
49,904 KB
testcase_17 AC 46 ms
50,024 KB
testcase_18 AC 48 ms
49,952 KB
testcase_19 AC 49 ms
50,088 KB
testcase_20 AC 47 ms
49,720 KB
testcase_21 AC 47 ms
50,080 KB
testcase_22 AC 47 ms
50,428 KB
testcase_23 AC 48 ms
50,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),k=Integer.parseInt(s[1]);
        int ans=n;
        if(n-1>k) ans=n-1;
        else if(k-1>0 && n-1<k) ans=k-1;
        System.out.println(ans);
    }
}
0