結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | Goyotan |
提出日時 | 2016-07-18 15:35:53 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 562 bytes |
コンパイル時間 | 3,556 ms |
コンパイル使用メモリ | 74,972 KB |
実行使用メモリ | 56,292 KB |
最終ジャッジ日時 | 2024-10-15 16:53:58 |
合計ジャッジ時間 | 4,869 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 96 ms
39,784 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 114 ms
41,376 KB |
testcase_10 | WA | - |
ソースコード
import java.util.Scanner; public class Study01 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.nextLine(); String [] q = a.split(" "); int[] z = new int[6]; int max = 0,min = 100; for(int i=0;i<q.length;i++){ z[i]= Integer.parseInt(q[i]); //System.out.println(z[i]); max = Math.max(max,z[i]); min = Math.min(min,z[i]); } int ll = max + min; int all = 0; for(int i=0;i<z.length;i++){ all += z[i]; } double answer = all - ll; answer /= 4; System.out.println(answer); } }