結果

問題 No.394 ハーフパイプ(1)
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:36:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 3,349 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-11-15 18:37:41
合計ジャッジ時間 5,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		double a, b, c, d, e, f, min, max;
		a = sc.nextDouble();
		min = a;
		max = a;
		b = sc.nextDouble();
		min = Math.min(min, b);
		max = Math.max(max, b);
		c = sc.nextDouble();
		min = Math.min(min, c);
		max = Math.max(max, c);
		d = sc.nextDouble();
		min = Math.min(min, d);
		max = Math.max(max, d);
		e = sc.nextDouble();
		min = Math.min(min, e);
		max = Math.max(max, e);
		f = sc.nextDouble();
		min = Math.min(min, f);
		max = Math.max(max, f);
		double ans = (a + b + c + d + e + f - min - max) / 4;
		System.out.printf("%.2f", ans);
	}
}
0