結果
問題 | No.275 中央値を求めよ |
ユーザー | Hiroaki Kono |
提出日時 | 2017-10-26 21:35:10 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 658 bytes |
コンパイル時間 | 3,293 ms |
コンパイル使用メモリ | 76,724 KB |
実行使用メモリ | 42,692 KB |
最終ジャッジ日時 | 2024-11-21 20:10:36 |
合計ジャッジ時間 | 10,923 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 121 ms
41,344 KB |
testcase_05 | WA | - |
testcase_06 | AC | 134 ms
41,456 KB |
testcase_07 | AC | 172 ms
42,096 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | AC | 121 ms
41,080 KB |
testcase_13 | WA | - |
testcase_14 | AC | 114 ms
40,496 KB |
testcase_15 | WA | - |
testcase_16 | AC | 182 ms
42,176 KB |
testcase_17 | AC | 181 ms
42,272 KB |
testcase_18 | WA | - |
testcase_19 | AC | 172 ms
42,068 KB |
testcase_20 | AC | 173 ms
41,856 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 180 ms
42,200 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 181 ms
42,120 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 134 ms
41,084 KB |
testcase_38 | AC | 146 ms
41,568 KB |
testcase_39 | AC | 145 ms
41,432 KB |
testcase_40 | WA | - |
ソースコード
import java.text.DecimalFormat; import java.util.Arrays; import java.util.Scanner; public class No275 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int count = s.nextInt(); int[] arr = new int[count]; for (int i = 0; i < count; i++) { arr[i] = s.nextInt(); } Arrays.sort(arr); double median; if (count % 2 == 0) { median = (double) ((arr[count / 2] + arr[count / 2 - 1]) / 2); } else { median = (double) arr[count / 2 - 1]; } System.out.println(new DecimalFormat(".#").format(median)); } }