結果

問題 No.394 ハーフパイプ(1)
ユーザー takeya_okino
提出日時 2017-06-19 21:02:11
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 56,376 KB
最終ジャッジ日時 2024-10-02 07:52:12
合計ジャッジ時間 4,159 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 9
権限があれば一括ダウンロードができます

ソースコード

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