結果

問題 No.857 素振り
ユーザー masa_ahemasa_ahe
提出日時 2020-03-14 23:07:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 313 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-05-03 01:31:16
合計ジャッジ時間 3,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,348 KB
testcase_01 AC 113 ms
41,256 KB
testcase_02 AC 100 ms
41,264 KB
testcase_03 AC 102 ms
41,188 KB
testcase_04 AC 99 ms
41,304 KB
testcase_05 AC 94 ms
40,124 KB
testcase_06 AC 97 ms
41,420 KB
testcase_07 AC 100 ms
41,572 KB
testcase_08 AC 108 ms
41,340 KB
testcase_09 AC 114 ms
41,316 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();
		if(z>=y)System.out.println(z-2);
		else if(y>=z&&z>=x)System.out.println(z-1);
		else if(x>z)System.out.println(z);
	}
}
0