結果

問題 No.857 素振り
ユーザー bambambambam
提出日時 2019-08-22 10:15:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 356 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 74,008 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-10-12 01:00:34
合計ジャッジ時間 4,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,788 KB
testcase_01 AC 131 ms
54,332 KB
testcase_02 AC 133 ms
40,824 KB
testcase_03 AC 131 ms
40,936 KB
testcase_04 AC 131 ms
41,160 KB
testcase_05 AC 132 ms
41,032 KB
testcase_06 AC 121 ms
39,792 KB
testcase_07 AC 133 ms
41,084 KB
testcase_08 AC 130 ms
40,964 KB
testcase_09 AC 130 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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