結果

問題 No.394 ハーフパイプ(1)
ユーザー RinRin
提出日時 2016-09-09 11:29:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 6,491 ms
コンパイル使用メモリ 75,604 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-11-16 05:11:39
合計ジャッジ時間 7,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
53,892 KB
testcase_01 AC 141 ms
53,848 KB
testcase_02 AC 136 ms
54,164 KB
testcase_03 AC 139 ms
53,924 KB
testcase_04 AC 136 ms
54,044 KB
testcase_05 AC 137 ms
54,016 KB
testcase_06 AC 140 ms
53,604 KB
testcase_07 AC 139 ms
53,700 KB
testcase_08 AC 143 ms
53,996 KB
testcase_09 AC 136 ms
53,788 KB
testcase_10 AC 145 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class b {
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int max = -1;
		int min = -1;
		double sum = 0;
		for(int i = 0; i < 6; i++){
			int foo = sc.nextInt();
			if(max == -1 || foo > max)
				max = foo;
			if(min == -1 || foo < min)
				min = foo;
			sum += foo;
		}
		System.out.printf("%.2f\n", (sum - max - min) / 4);
	}
}
0