結果

問題 No.394 ハーフパイプ(1)
ユーザー YOSHIYOSHI
提出日時 2021-03-13 20:03:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 4,424 ms
コンパイル使用メモリ 86,104 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-10-15 10:11:06
合計ジャッジ時間 6,512 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,748 KB
testcase_01 AC 116 ms
41,720 KB
testcase_02 AC 130 ms
41,112 KB
testcase_03 AC 127 ms
41,848 KB
testcase_04 AC 129 ms
41,592 KB
testcase_05 AC 129 ms
41,692 KB
testcase_06 AC 127 ms
41,400 KB
testcase_07 AC 130 ms
41,696 KB
testcase_08 AC 118 ms
40,760 KB
testcase_09 AC 126 ms
41,708 KB
testcase_10 AC 126 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.stream.Stream;

public class No00000394_Main2 {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		int[] arr = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		Arrays.sort(arr);
		int score = 0;
		for(int i = 1; i <= 4; i++) {
			score += arr[i];
		}
		System.out.println(String.format("%.2f", score / 4.0));
	}
}
0