結果

問題 No.1748 Parking Lot
ユーザー merlinmerlin
提出日時 2021-11-19 21:48:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 1,804 ms
コンパイル使用メモリ 73,560 KB
実行使用メモリ 37,144 KB
最終ジャッジ日時 2024-06-10 08:33:32
合計ジャッジ時間 3,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
36,536 KB
testcase_01 AC 42 ms
36,860 KB
testcase_02 AC 43 ms
36,520 KB
testcase_03 AC 43 ms
37,136 KB
testcase_04 AC 43 ms
36,704 KB
testcase_05 AC 43 ms
36,960 KB
testcase_06 AC 45 ms
37,104 KB
testcase_07 AC 45 ms
36,540 KB
testcase_08 WA -
testcase_09 AC 45 ms
37,044 KB
testcase_10 AC 44 ms
36,572 KB
testcase_11 AC 44 ms
37,048 KB
testcase_12 AC 43 ms
36,980 KB
testcase_13 AC 44 ms
36,572 KB
testcase_14 AC 44 ms
36,828 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 42 ms
36,832 KB
testcase_21 WA -
testcase_22 AC 43 ms
36,820 KB
testcase_23 AC 42 ms
37,144 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) ans=k-1;
        System.out.println(ans);
    }
}
0