結果

問題 No.857 素振り
ユーザー GodNegotoGodNegoto
提出日時 2019-11-07 16:20:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 395 bytes
コンパイル時間 3,433 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 41,232 KB
最終ジャッジ日時 2024-09-15 00:41:56
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,196 KB
testcase_01 AC 126 ms
40,988 KB
testcase_02 AC 123 ms
40,916 KB
testcase_03 AC 125 ms
40,924 KB
testcase_04 AC 128 ms
41,192 KB
testcase_05 AC 132 ms
41,068 KB
testcase_06 AC 129 ms
40,852 KB
testcase_07 AC 126 ms
40,984 KB
testcase_08 AC 128 ms
41,088 KB
testcase_09 AC 133 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

//import algo.*;

public class sample7 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		long X = sc.nextLong();
		long Y = sc.nextLong();
		long Z = sc.nextLong();
		long cnt = Z;
		
		if(Z >= X) {
			cnt -= 1;
			}
		if(Z >= Y) {
			cnt -= 1;
		}
		System.out.println(cnt);
	}
}
0