結果

問題 No.275 中央値を求めよ
ユーザー YoiTaka
提出日時 2017-02-23 06:23:34
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 109,336 KB
実行使用メモリ 30,068 KB
最終ジャッジ日時 2024-12-31 10:29:50
合計ジャッジ時間 3,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6 WA * 32
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program
{
    static void Main(string[] args)
    {
        string line = System.Console.ReadLine().Trim();
        int N = int.Parse(line);
        
        line = System.Console.ReadLine().Trim();
        string[] Data = line.Split(' ');
        Array.Sort(Data);

        if(Data.Length %2 ==0)
        {
            double x = (double.Parse(Data[Data.Length / 2]) + double.Parse(Data[Data.Length / 2 - 1])) / 2;
            System.Console.WriteLine(x);
            return;
        }
        else
        {
            System.Console.WriteLine(Data[(Data.Length-1)/2]);
            return;
        }     
    }
}
0