結果

問題 No.394 ハーフパイプ(1)
ユーザー YOSHIYOSHI
提出日時 2021-03-13 20:01:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 4,743 ms
コンパイル使用メモリ 79,492 KB
実行使用メモリ 41,136 KB
最終ジャッジ日時 2024-10-15 10:08:49
合計ジャッジ時間 6,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,884 KB
testcase_01 AC 115 ms
41,136 KB
testcase_02 AC 118 ms
40,300 KB
testcase_03 AC 105 ms
39,736 KB
testcase_04 AC 112 ms
40,512 KB
testcase_05 AC 110 ms
39,680 KB
testcase_06 AC 118 ms
40,904 KB
testcase_07 AC 118 ms
40,852 KB
testcase_08 AC 102 ms
40,136 KB
testcase_09 AC 109 ms
40,524 KB
testcase_10 AC 106 ms
40,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000394_Main {
	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).sorted().toArray();
		int score = 0;
		for(int i = 1; i <= 4; i++) {
			score += arr[i];
		}
		System.out.println(String.format("%.2f", score / 4.0));
	}
}
0