結果

問題 No.857 素振り
ユーザー ks2mks2m
提出日時 2019-08-09 21:21:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 328 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 73,948 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-07-19 10:58:39
合計ジャッジ時間 3,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,020 KB
testcase_01 AC 126 ms
41,160 KB
testcase_02 AC 133 ms
41,036 KB
testcase_03 AC 135 ms
41,292 KB
testcase_04 AC 125 ms
41,508 KB
testcase_05 AC 123 ms
41,412 KB
testcase_06 AC 127 ms
41,272 KB
testcase_07 AC 128 ms
41,404 KB
testcase_08 AC 135 ms
41,228 KB
testcase_09 AC 128 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long x = sc.nextLong();
		long y = sc.nextLong();
		long z = sc.nextLong();
		sc.close();

		long ans = z;
		if (x <= z) ans--;
		if (y <= z) ans--;
		System.out.println(ans);
	}
}
0