結果

問題 No.394 ハーフパイプ(1)
ユーザー tsunabittsunabit
提出日時 2018-06-03 04:09:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 4,154 ms
コンパイル使用メモリ 80,152 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-06-30 09:12:49
合計ジャッジ時間 6,530 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,436 KB
testcase_01 AC 137 ms
41,492 KB
testcase_02 AC 133 ms
41,520 KB
testcase_03 AC 119 ms
40,224 KB
testcase_04 AC 132 ms
41,328 KB
testcase_05 AC 128 ms
41,464 KB
testcase_06 AC 132 ms
41,296 KB
testcase_07 AC 132 ms
41,612 KB
testcase_08 AC 134 ms
41,620 KB
testcase_09 AC 133 ms
41,440 KB
testcase_10 AC 133 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
public class No394 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int[] s = Stream.of(sc.nextLine().split(" ", 0)).mapToInt(Integer::parseInt).toArray();
		Arrays.sort(s);
		System.out.printf("%.2f", (s[1] + s[2] + s[3] + s[4]) / 4.00);
	}
}
0