結果

問題 No.857 素振り
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 09:26:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 305 bytes
コンパイル時間 4,366 ms
コンパイル使用メモリ 77,376 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-11-19 08:00:46
合計ジャッジ時間 6,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,356 KB
testcase_01 AC 138 ms
41,528 KB
testcase_02 AC 141 ms
41,164 KB
testcase_03 AC 143 ms
40,948 KB
testcase_04 AC 139 ms
41,068 KB
testcase_05 AC 139 ms
41,216 KB
testcase_06 AC 141 ms
41,452 KB
testcase_07 AC 142 ms
41,172 KB
testcase_08 AC 141 ms
41,136 KB
testcase_09 AC 140 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con857 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long X = s.nextLong() , Y = s.nextLong() , Z = s.nextLong();
		s.close();

		if(Y <= Z){
			Z--;
		}
		if(X <= Z){
			Z--;
		}
		System.out.println(Z);

	}

}
0