結果

問題 No.394 ハーフパイプ(1)
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 21:44:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 2,921 ms
コンパイル使用メモリ 75,736 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-07-07 19:04:23
合計ジャッジ時間 4,617 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Arrays;
import java.util.Scanner;

public class Halfpipe {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int[] score = new int[6];
		for(int i = 0;i < 6;i++){
			score[i] = s.nextInt();
		}
		s.close();
		Arrays.sort(score);
		int sum = 0;
		for(int i = 1;i < 5;i++){
			sum += score[i];
		}
		BigDecimal total = new BigDecimal(sum);
		BigDecimal t = new BigDecimal(4);
		System.out.println(String.format("%.2f", total.divide(t)));

	}

}
0