結果

問題 No.857 素振り
ユーザー tentententen
提出日時 2020-08-31 15:32:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 393 bytes
コンパイル時間 3,198 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 56,032 KB
最終ジャッジ日時 2024-11-16 00:35:06
合計ジャッジ時間 5,297 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,024 KB
testcase_01 AC 134 ms
54,016 KB
testcase_02 AC 120 ms
52,712 KB
testcase_03 AC 131 ms
54,080 KB
testcase_04 AC 135 ms
54,304 KB
testcase_05 AC 134 ms
53,852 KB
testcase_06 AC 136 ms
54,012 KB
testcase_07 AC 135 ms
53,980 KB
testcase_08 AC 137 ms
53,712 KB
testcase_09 AC 135 ms
56,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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