結果

問題 No.394 ハーフパイプ(1)
ユーザー yagi2yagi2
提出日時 2017-04-17 11:32:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 76,864 KB
実行使用メモリ 41,236 KB
最終ジャッジ日時 2024-07-19 05:19:15
合計ジャッジ時間 3,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,084 KB
testcase_01 AC 101 ms
39,984 KB
testcase_02 AC 105 ms
40,164 KB
testcase_03 AC 116 ms
41,236 KB
testcase_04 AC 113 ms
40,780 KB
testcase_05 AC 102 ms
40,076 KB
testcase_06 AC 94 ms
39,344 KB
testcase_07 AC 105 ms
40,132 KB
testcase_08 AC 98 ms
39,860 KB
testcase_09 AC 114 ms
40,904 KB
testcase_10 AC 99 ms
39,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        List<Integer> scores = new ArrayList<>();
        for (int i = 0; i < 6; i++) {
            scores.add(Integer.parseInt(sc.next()));
        }
        Collections.sort(scores);
        scores.remove(0);
        scores.remove(scores.size()-1);

        int sum = 0;
        for (int i : scores) {
            sum += i;
        }
        System.out.printf("%.2f\n",sum / 4.0);
    }
}
0