結果

問題 No.965 門松列が嫌い
ユーザー uwiuwi
提出日時 2020-01-13 19:24:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 1,126 bytes
コンパイル時間 4,330 ms
コンパイル使用メモリ 78,840 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-12-21 14:35:41
合計ジャッジ時間 5,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,248 KB
testcase_01 AC 123 ms
41,332 KB
testcase_02 AC 119 ms
41,440 KB
testcase_03 AC 118 ms
41,356 KB
testcase_04 AC 120 ms
41,436 KB
testcase_05 AC 117 ms
41,636 KB
testcase_06 AC 120 ms
41,164 KB
testcase_07 AC 120 ms
41,292 KB
testcase_08 AC 108 ms
41,156 KB
testcase_09 AC 106 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package contest200113;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class B {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		int A = ni(), B = ni(), C = ni();
		if(!(1 <= A && A <= 1000000000))throw new RuntimeException();
		if(!(1 <= B && B <= 1000000000))throw new RuntimeException();
		if(!(1 <= C && C <= 1000000000))throw new RuntimeException();
		if(!(B < A && A < C || C < A && A < B || B < C && C < A || A < C && C < B)) {
			throw new RuntimeException();
		}
		out.println(Math.min(Math.min(Math.abs(A-B), Math.abs(B-C)), Math.abs(C-A)));
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0