結果

問題 No.857 素振り
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-02 22:38:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 1,000 ms
コード長 377 bytes
コンパイル時間 3,802 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 54,092 KB
最終ジャッジ日時 2024-11-24 23:47:27
合計ジャッジ時間 3,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,812 KB
testcase_01 AC 110 ms
53,856 KB
testcase_02 AC 110 ms
54,080 KB
testcase_03 AC 112 ms
53,752 KB
testcase_04 AC 104 ms
53,080 KB
testcase_05 AC 99 ms
52,820 KB
testcase_06 AC 101 ms
52,820 KB
testcase_07 AC 97 ms
52,732 KB
testcase_08 AC 111 ms
54,092 KB
testcase_09 AC 97 ms
52,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long x = Long.parseLong(sc.next());
        long y = Long.parseLong(sc.next());
        long z = Long.parseLong(sc.next());
        long ans = z;
        if(x <= z) ans--;
        if(y <= z) ans--;
        System.out.println(ans);
    }
}
0