結果
問題 | No.394 ハーフパイプ(1) |
ユーザー | Goyotan |
提出日時 | 2016-07-18 15:45:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 124 ms / 2,000 ms |
コード長 | 720 bytes |
コンパイル時間 | 5,043 ms |
コンパイル使用メモリ | 74,528 KB |
実行使用メモリ | 41,028 KB |
最終ジャッジ日時 | 2024-10-15 16:54:59 |
合計ジャッジ時間 | 4,992 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
40,268 KB |
testcase_01 | AC | 112 ms
40,004 KB |
testcase_02 | AC | 109 ms
40,680 KB |
testcase_03 | AC | 115 ms
41,028 KB |
testcase_04 | AC | 111 ms
41,008 KB |
testcase_05 | AC | 101 ms
40,208 KB |
testcase_06 | AC | 110 ms
40,952 KB |
testcase_07 | AC | 111 ms
40,284 KB |
testcase_08 | AC | 116 ms
40,456 KB |
testcase_09 | AC | 116 ms
39,800 KB |
testcase_10 | AC | 124 ms
40,892 KB |
ソースコード
import java.text.DecimalFormat; import java.util.Scanner; public class Study01 { public static void main(String[] args) { DecimalFormat ff = new DecimalFormat("#.#"); ff.setMinimumFractionDigits(2); ff.setMaximumFractionDigits(2); 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(ff.format(answer)); } }