結果

問題 No.394 ハーフパイプ(1)
ユーザー jimanojimano
提出日時 2018-01-20 15:15:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 3,287 ms
コンパイル使用メモリ 75,636 KB
実行使用メモリ 37,664 KB
最終ジャッジ日時 2024-06-07 04:12:31
合計ジャッジ時間 4,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,532 KB
testcase_01 AC 49 ms
37,572 KB
testcase_02 AC 50 ms
37,132 KB
testcase_03 AC 49 ms
37,284 KB
testcase_04 AC 51 ms
37,416 KB
testcase_05 AC 50 ms
37,504 KB
testcase_06 AC 51 ms
37,664 KB
testcase_07 AC 50 ms
37,464 KB
testcase_08 AC 50 ms
37,384 KB
testcase_09 AC 51 ms
37,664 KB
testcase_10 AC 52 ms
37,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.util.Arrays;

public class No0394_2 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] str = br.readLine().split(" ");
			int[] score = new int[str.length];
			double sum = 0;

			for (int i = 0; i < str.length; i++) {
				score[i] = Integer.parseInt(str[i]);
			}
			Arrays.sort(score);

			for (int i = 1; i < str.length - 1; i++) {
				sum += score[i];
			}
			double avg = sum / (str.length - 2);

			System.out.println(new BigDecimal(avg).setScale(2));
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0