結果

問題 No.394 ハーフパイプ(1)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 15:02:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-04-21 13:22:20
合計ジャッジ時間 4,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 144 ms
40,920 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 143 ms
41,472 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int[] ar = new int[6];
		for (int i=0; i<6; i++) {
			ar[i] = sc.nextInt();
		}
		Arrays.sort(ar);
		double total = 0;
		for (int i=1; i<5; i++) {
			total += ar[i];
		}
		System.out.println(total/4);
	}
}
0