結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-10 15:09:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 501 bytes |
コンパイル時間 | 2,227 ms |
コンパイル使用メモリ | 74,656 KB |
実行使用メモリ | 41,836 KB |
最終ジャッジ日時 | 2024-10-13 12:50:47 |
合計ジャッジ時間 | 4,354 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
import java.util.*; import java.math.*; 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]; } BigDecimal bd1 = BigDecimal.valueOf(total); BigDecimal bd2 = BigDecimal.valueOf(4); BigDecimal bd3 = bd1.divide(bd2,3,RoundingMode.HALF_UP); System.out.println(bd3); } }