結果

問題 No.275 中央値を求めよ
ユーザー mumucodermumucoder
提出日時 2018-10-28 12:12:48
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 65,652 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-29 22:24:03
合計ジャッジ時間 1,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 WA -
testcase_40 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

int main(int argc, char *argv[]) {
	int task_size = 0;
	int input = 0;
	double median = 0;
	std::vector<int> input_array;

	std::cin >> task_size;
	for (int i = 0; i < task_size; i++) {
		std::cin >> input;
		input_array.push_back(input);
	}

	std::sort(input_array.begin(), input_array.end());

	int half_size = task_size / 2;
	int middle_first = 0;
	int middle_second = 0;

	if (task_size % 2 != 0) {
		median = input_array[half_size + 1];
	} else {
		middle_first = input_array[half_size - 1];
		middle_second = input_array[half_size];
		median = (middle_first + middle_second) / 2.0;
	} 

	std::cout << median << std::endl;
	return 0;
}
0