結果

問題 No.394 ハーフパイプ(1)
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 15:41:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 76,260 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-07-07 04:42:26
合計ジャッジ時間 3,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,268 KB
testcase_01 AC 100 ms
53,508 KB
testcase_02 AC 108 ms
53,288 KB
testcase_03 AC 110 ms
53,992 KB
testcase_04 AC 113 ms
53,892 KB
testcase_05 AC 111 ms
54,204 KB
testcase_06 AC 102 ms
52,876 KB
testcase_07 AC 110 ms
54,136 KB
testcase_08 AC 101 ms
52,864 KB
testcase_09 AC 106 ms
52,856 KB
testcase_10 AC 109 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{

	static Scanner s=new Scanner(System.in);

	public static void main(String __[]){
		input();
		solve();
	}

	private static void input(){
	}

	private static void solve(){
		System.out.printf("%.2f\n",
				IntStream.of(
				s.nextInt(),
				s.nextInt(),
				s.nextInt(),
				s.nextInt(),
				s.nextInt(),
				s.nextInt())
				.sorted()
				.skip(1).limit(4).
				sum()

				/4.0);
	}
}
0