結果

問題 No.394 ハーフパイプ(1)
ユーザー ziitaziita
提出日時 2017-06-25 16:05:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 2,232 bytes
コンパイル時間 2,521 ms
コンパイル使用メモリ 79,076 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-10-04 08:46:38
合計ジャッジ時間 4,406 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,320 KB
testcase_01 AC 124 ms
41,468 KB
testcase_02 AC 125 ms
41,520 KB
testcase_03 AC 128 ms
41,264 KB
testcase_04 AC 120 ms
41,376 KB
testcase_05 AC 122 ms
41,480 KB
testcase_06 AC 122 ms
41,172 KB
testcase_07 AC 123 ms
41,416 KB
testcase_08 AC 121 ms
41,144 KB
testcase_09 AC 122 ms
41,244 KB
testcase_10 AC 123 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.InputMismatchException;
import java.io.OutputStream;
import java.util.StringTokenizer;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.math.BigDecimal;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        public void solve(int testNumber, InputReader in, PrintWriter out) {
            double score[] = new double[6];
            for(int i=0; i<6; i++){
                score[i] = (double)in.nextInt();
            }
            Arrays.sort(score);
            score[0]=0;
            score[5]=0;
            double res = 0;
            for(int i=0; i<6; i++){
                res+=score[i];
            }
            out.printf("%.2f",res/4);
        }
    }


    static class InputReader {
        public BufferedReader reader;
        public StringTokenizer tokenizer;

        public InputReader(InputStream stream) {
            reader = new BufferedReader(new InputStreamReader(stream), 32768);
            tokenizer = null;
        }

        public String next() {
            while (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }

        public long nextLong() {
            return Long.parseLong(next());
        }

    }
}
0