結果

問題 No.394 ハーフパイプ(1)
ユーザー FVRChanFVRChan
提出日時 2017-09-29 09:58:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-11-15 19:46:26
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,588 KB
testcase_01 AC 133 ms
41,588 KB
testcase_02 AC 120 ms
40,192 KB
testcase_03 AC 116 ms
40,248 KB
testcase_04 AC 132 ms
41,532 KB
testcase_05 AC 133 ms
41,368 KB
testcase_06 AC 133 ms
41,984 KB
testcase_07 AC 134 ms
41,540 KB
testcase_08 AC 133 ms
41,688 KB
testcase_09 AC 134 ms
41,400 KB
testcase_10 AC 130 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String args[])throws Exception{
		Scanner sc=new Scanner(System.in);
		int are[]=new int[6];
		for(int i=0;i<are.length;i++)are[i]=sc.nextInt();
		Arrays.sort(are);
		double ave=0.0;
		for(int i=1;i<are.length-1;i++)ave+=are[i];
		ave/=4;
		System.out.printf("%.2f",ave);
	}
}
0