結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | YOSHI |
提出日時 | 2021-03-13 20:07:02 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 622 bytes |
コンパイル時間 | 4,189 ms |
コンパイル使用メモリ | 75,604 KB |
実行使用メモリ | 37,056 KB |
最終ジャッジ日時 | 2024-10-15 10:13:41 |
合計ジャッジ時間 | 5,398 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; public class No00000394_Main3 { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); public static void main(String[] args) throws IOException { String[] strArr = br.readLine().split(" "); int[] arr = new int[strArr.length]; for(int i = 0; i <= strArr.length; i++) { arr[i] = Integer.parseInt(strArr[i]); } Arrays.sort(arr); int score = 0; for(int i = 1; i <= 4; i++) { score += arr[i]; } System.out.println(String.format("%.2f", score / 4.0)); } }