結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | takeya_okino |
提出日時 | 2017-06-19 21:02:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 518 bytes |
コンパイル時間 | 2,053 ms |
コンパイル使用メモリ | 74,540 KB |
実行使用メモリ | 56,376 KB |
最終ジャッジ日時 | 2024-10-02 07:52:12 |
合計ジャッジ時間 | 4,159 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 126 ms
54,212 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 127 ms
54,388 KB |
testcase_10 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] s = new int[6]; for(int i = 0; i < 6; i++) { s[i] = sc.nextInt(); } Arrays.sort(s); int sum = 0; for(int i = 1; i < 5; i++) { sum += s[i]; } double ans = sum / 4; if(sum % 4 == 1) { ans += 0.25; } else if(sum % 4 == 2) { ans += 0.50; } else if(sum % 4 == 3) { ans += 0.75; } System.out.println(ans); } }