結果

問題 No.275 中央値を求めよ
ユーザー j1930021
提出日時 2016-01-08 22:48:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 560 bytes
コンパイル時間 1,145 ms
コンパイル使用メモリ 110,108 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-06-24 23:38:39
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

namespace No._275
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.ReadLine();
            var num = Console.ReadLine().Split(' ').Select(int.Parse).OrderBy(_ => _).ToList();
            double m = 0;

            if (num.Count % 2 != 0)
            {
                m = num.ElementAt(num.Count / 2);
            }
            else
            {
                m = num.Skip(num.Count / 2 -1).Take(2).Average();
            }

            Console.WriteLine(m);
        }
    }
}
0