結果

問題 No.394 ハーフパイプ(1)
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-30 20:38:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 3,601 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-11-15 20:56:27
合計ジャッジ時間 5,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,420 KB
testcase_01 AC 120 ms
41,448 KB
testcase_02 AC 124 ms
41,236 KB
testcase_03 AC 122 ms
40,984 KB
testcase_04 AC 121 ms
41,212 KB
testcase_05 AC 122 ms
40,988 KB
testcase_06 AC 122 ms
40,980 KB
testcase_07 AC 124 ms
41,284 KB
testcase_08 AC 123 ms
40,976 KB
testcase_09 AC 120 ms
41,264 KB
testcase_10 AC 122 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No394 {
	
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			String[] temp = br.readLine().split(" ");
			int[] points = new int[temp.length];
			
			for(int i =0; i < temp.length; i++)
				points[i] = Integer.parseInt(temp[i]);
			System.out.printf("%.2f",getAve(points));
			
		}catch(Exception e){
			e.getStackTrace();
		}
	}
	
	
	public static double getAve(int[] x){
		Arrays.sort(x);
		double sum = 0;
		double ave = 0;
		for(int i=1; i < x.length - 1; i++)
			sum += x[i];
		ave = sum / (x.length - 2);
		return ave;
	}
}
0