結果

問題 No.275 中央値を求めよ
ユーザー j1930021
提出日時 2016-01-08 22:46:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 1,126 ms
コンパイル使用メモリ 107,008 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-09-19 13:11:24
合計ジャッジ時間 3,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 2 WA * 36
権限があれば一括ダウンロードができます
コンパイルメッセージ
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)
        {
            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