結果

問題 No.857 素振り
ユーザー shigeki_createshigeki_create
提出日時 2019-08-15 02:39:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 417 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-09-19 14:46:17
合計ジャッジ時間 4,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,308 KB
testcase_01 AC 125 ms
41,216 KB
testcase_02 AC 129 ms
41,340 KB
testcase_03 AC 125 ms
41,532 KB
testcase_04 AC 126 ms
41,752 KB
testcase_05 AC 126 ms
41,136 KB
testcase_06 AC 124 ms
41,708 KB
testcase_07 AC 126 ms
41,548 KB
testcase_08 AC 124 ms
41,464 KB
testcase_09 AC 124 ms
41,716 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 day = X <= Z ? Z-1 : Z;
		day = Y <= Z ? day-1 : day;
		println(day);
	}

	public static void print(Object o) {
		System.out.print(o);
	}

	public static void println(Object o) {
		System.out.println(o);
	}
}
0