結果

問題 No.394 ハーフパイプ(1)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-06 10:52:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 42,016 KB
最終ジャッジ日時 2024-06-28 02:05:58
合計ジャッジ時間 4,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
42,016 KB
testcase_01 AC 136 ms
41,424 KB
testcase_02 AC 133 ms
41,772 KB
testcase_03 AC 131 ms
41,676 KB
testcase_04 AC 133 ms
41,200 KB
testcase_05 AC 129 ms
41,456 KB
testcase_06 AC 131 ms
41,548 KB
testcase_07 AC 132 ms
41,588 KB
testcase_08 AC 132 ms
41,372 KB
testcase_09 AC 134 ms
41,548 KB
testcase_10 AC 132 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int[] s = new int[6];
        for(int i = 0; i < 6; i++)
            s[i] = in.nextInt();

        Arrays.sort(s);

        int sum = 0;
        for(int i = 1; i < 5; i++)
            sum += s[i];

        System.out.printf("%.2f\n", (double)sum / 4.0);
    }
}
0