結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,332 KB
testcase_01 AC 111 ms
40,348 KB
testcase_02 AC 120 ms
41,756 KB
testcase_03 AC 108 ms
40,412 KB
testcase_04 AC 110 ms
40,560 KB
testcase_05 AC 117 ms
41,492 KB
testcase_06 AC 126 ms
41,544 KB
testcase_07 AC 124 ms
41,704 KB
testcase_08 AC 111 ms
40,560 KB
testcase_09 AC 117 ms
41,876 KB
testcase_10 AC 121 ms
41,456 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