結果

問題 No.857 素振り
ユーザー fal_rndfal_rnd
提出日時 2019-11-22 00:46:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 241 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 41,240 KB
最終ジャッジ日時 2024-10-11 02:27:20
合計ジャッジ時間 4,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,188 KB
testcase_01 AC 119 ms
39,692 KB
testcase_02 AC 135 ms
41,064 KB
testcase_03 AC 133 ms
41,012 KB
testcase_04 AC 133 ms
41,040 KB
testcase_05 AC 134 ms
41,072 KB
testcase_06 AC 132 ms
41,240 KB
testcase_07 AC 134 ms
41,120 KB
testcase_08 AC 135 ms
40,960 KB
testcase_09 AC 120 ms
40,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	public static void main(String[] $) {
		Scanner s=new Scanner(System.in);
		long a=s.nextLong(),b=s.nextLong(),c=s.nextLong();
		long r=c;
		if(a<=c)
			--r;
		if(b<=c)
			--r;
		System.out.println(r);
	}
}
0