結果

問題 No.275 中央値を求めよ
ユーザー keymoonkeymoon
提出日時 2019-02-23 11:17:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 509 bytes
コンパイル時間 1,199 ms
コンパイル使用メモリ 111,344 KB
実行使用メモリ 29,016 KB
最終ジャッジ日時 2024-05-06 18:27:03
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
28,464 KB
testcase_01 AC 33 ms
26,300 KB
testcase_02 AC 33 ms
28,092 KB
testcase_03 AC 32 ms
26,028 KB
testcase_04 AC 33 ms
25,908 KB
testcase_05 AC 32 ms
26,076 KB
testcase_06 AC 34 ms
26,208 KB
testcase_07 AC 36 ms
26,616 KB
testcase_08 AC 35 ms
26,224 KB
testcase_09 AC 37 ms
26,588 KB
testcase_10 AC 36 ms
26,496 KB
testcase_11 AC 33 ms
28,112 KB
testcase_12 AC 32 ms
25,180 KB
testcase_13 AC 31 ms
25,568 KB
testcase_14 AC 31 ms
25,636 KB
testcase_15 AC 36 ms
28,692 KB
testcase_16 AC 38 ms
29,016 KB
testcase_17 AC 38 ms
26,528 KB
testcase_18 AC 38 ms
24,628 KB
testcase_19 AC 37 ms
26,800 KB
testcase_20 AC 36 ms
26,360 KB
testcase_21 AC 36 ms
28,528 KB
testcase_22 AC 37 ms
28,628 KB
testcase_23 AC 36 ms
28,408 KB
testcase_24 AC 34 ms
26,332 KB
testcase_25 AC 36 ms
28,424 KB
testcase_26 AC 36 ms
26,800 KB
testcase_27 AC 35 ms
26,336 KB
testcase_28 AC 32 ms
26,284 KB
testcase_29 AC 37 ms
28,504 KB
testcase_30 AC 32 ms
28,216 KB
testcase_31 AC 37 ms
26,464 KB
testcase_32 AC 35 ms
28,632 KB
testcase_33 AC 36 ms
26,460 KB
testcase_34 AC 31 ms
26,208 KB
testcase_35 AC 37 ms
28,376 KB
testcase_36 AC 38 ms
26,464 KB
testcase_37 AC 38 ms
28,408 KB
testcase_38 AC 36 ms
26,716 KB
testcase_39 AC 39 ms
26,800 KB
testcase_40 AC 37 ms
26,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;

class P
{
    static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        Console.WriteLine(Console.ReadLine().Split().Select(int.Parse).OrderBy(x => x).Skip((n - 1) / 2).Take(n % 2 == 0 ? 2 : 1).Average());
    }
}
0