結果

問題 No.394 ハーフパイプ(1)
ユーザー kaoetayakaoetaya
提出日時 2016-11-28 13:08:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 3,398 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-11-27 12:35:32
合計ジャッジ時間 5,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,088 KB
testcase_01 AC 119 ms
41,516 KB
testcase_02 AC 105 ms
41,128 KB
testcase_03 AC 115 ms
41,176 KB
testcase_04 AC 116 ms
41,180 KB
testcase_05 AC 115 ms
41,404 KB
testcase_06 AC 119 ms
41,540 KB
testcase_07 AC 108 ms
41,048 KB
testcase_08 AC 109 ms
41,444 KB
testcase_09 AC 117 ms
40,424 KB
testcase_10 AC 111 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class pre {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
		int j[] = new int[6];
		
		for(int i=0;i<6;i++){
			j[i] = s.nextInt();
		}
		
		Arrays.sort(j);
		
		System.out.printf("%.2f\n",(double)(j[1] + j[2] + j[3] + j[4]) / 4.0);
    }
}
0