結果

問題 No.1748 Parking Lot
ユーザー tentententen
提出日時 2022-08-09 09:17:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 50,376 KB
最終ジャッジ日時 2024-09-19 16:23:01
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
37,272 KB
testcase_01 AC 45 ms
37,048 KB
testcase_02 AC 46 ms
37,072 KB
testcase_03 AC 46 ms
37,168 KB
testcase_04 AC 46 ms
36,984 KB
testcase_05 AC 45 ms
36,956 KB
testcase_06 AC 43 ms
36,976 KB
testcase_07 AC 44 ms
36,988 KB
testcase_08 AC 44 ms
37,056 KB
testcase_09 AC 44 ms
37,252 KB
testcase_10 AC 44 ms
36,664 KB
testcase_11 AC 45 ms
36,748 KB
testcase_12 AC 45 ms
36,648 KB
testcase_13 AC 45 ms
37,140 KB
testcase_14 AC 44 ms
37,012 KB
testcase_15 AC 44 ms
36,644 KB
testcase_16 AC 46 ms
37,204 KB
testcase_17 AC 44 ms
37,036 KB
testcase_18 AC 45 ms
37,256 KB
testcase_19 AC 44 ms
36,908 KB
testcase_20 AC 44 ms
36,992 KB
testcase_21 AC 44 ms
37,124 KB
testcase_22 AC 43 ms
36,988 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int ans;
        if (n - 1 == k) {
            ans = n;
        } else {
            ans = n - 1;
        }
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0