結果

問題 No.394 ハーフパイプ(1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-19 21:02:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 56,092 KB
最終ジャッジ日時 2024-04-10 06:13:53
合計ジャッジ時間 4,266 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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);
  }
}
0