結果

問題 No.275 中央値を求めよ
ユーザー koko_ukoko_u
提出日時 2015-10-04 23:54:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 1,118 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 89,992 KB
実行使用メモリ 42,012 KB
最終ジャッジ日時 2024-06-24 23:21:59
合計ジャッジ時間 8,701 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,228 KB
testcase_01 AC 122 ms
41,440 KB
testcase_02 AC 127 ms
41,268 KB
testcase_03 AC 120 ms
41,252 KB
testcase_04 AC 124 ms
41,536 KB
testcase_05 AC 121 ms
41,364 KB
testcase_06 AC 122 ms
41,520 KB
testcase_07 AC 131 ms
41,468 KB
testcase_08 AC 129 ms
41,244 KB
testcase_09 AC 129 ms
41,336 KB
testcase_10 AC 126 ms
41,136 KB
testcase_11 AC 111 ms
41,536 KB
testcase_12 AC 123 ms
41,508 KB
testcase_13 AC 123 ms
41,200 KB
testcase_14 AC 111 ms
41,644 KB
testcase_15 AC 132 ms
40,864 KB
testcase_16 AC 152 ms
42,012 KB
testcase_17 AC 131 ms
40,684 KB
testcase_18 AC 130 ms
41,180 KB
testcase_19 AC 130 ms
41,688 KB
testcase_20 AC 125 ms
40,604 KB
testcase_21 AC 131 ms
41,528 KB
testcase_22 AC 129 ms
40,908 KB
testcase_23 AC 130 ms
41,260 KB
testcase_24 AC 126 ms
41,284 KB
testcase_25 AC 126 ms
40,596 KB
testcase_26 AC 131 ms
40,628 KB
testcase_27 AC 124 ms
40,780 KB
testcase_28 AC 124 ms
41,348 KB
testcase_29 AC 130 ms
41,364 KB
testcase_30 AC 122 ms
41,156 KB
testcase_31 AC 138 ms
41,012 KB
testcase_32 AC 124 ms
41,456 KB
testcase_33 AC 128 ms
41,012 KB
testcase_34 AC 124 ms
41,264 KB
testcase_35 AC 132 ms
40,904 KB
testcase_36 AC 126 ms
41,596 KB
testcase_37 AC 121 ms
41,360 KB
testcase_38 AC 126 ms
41,280 KB
testcase_39 AC 128 ms
41,420 KB
testcase_40 AC 132 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.co.kokou.sample.no275;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.stream.Stream;

public class Main {

    public static void main(String[] args) {
        try (InputStreamReader isr = new InputStreamReader(System.in);
             BufferedReader br = new BufferedReader(isr)) {

            br.readLine(); // 最初の値は捨てる
            String[] strNums = br.readLine().split("\\s+");
            int[] nums = Stream.of(strNums).mapToInt(Integer::parseInt).toArray();
            System.out.format("%.1f%n", Median.calc(nums));
        } catch (IOException ex) {

        }
    }

    public static class Median {

        public static double calc(int... numbers) {
            int[] nums = Arrays.copyOf(numbers, numbers.length);
            Arrays.sort(nums);
            if (nums.length % 2 == 0) {  // 偶数
                return (nums[nums.length / 2 - 1] + nums[nums.length / 2]) / 2.0;
            } else { // 奇数
                return nums[nums.length / 2];
            }
        }
    }
}
0