結果

問題 No.394 ハーフパイプ(1)
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:32:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 3,384 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-11-15 18:37:32
合計ジャッジ時間 5,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 144 ms
41,592 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 146 ms
41,928 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
		System.out.println((a + b + c + d + e + f - min - max) / 4);
	}
}
0