結果
| 問題 | 
                            No.275 中央値を求めよ
                             | 
                    
| コンテスト | |
| ユーザー | 
                             YoiTaka
                         | 
                    
| 提出日時 | 2017-02-23 06:35:27 | 
| 言語 | C#(csc)  (csc 3.9.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 690 bytes | 
| コンパイル時間 | 844 ms | 
| コンパイル使用メモリ | 112,376 KB | 
| 実行使用メモリ | 27,572 KB | 
| 最終ジャッジ日時 | 2024-12-31 10:31:12 | 
| 合計ジャッジ時間 | 3,317 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 WA * 1 | 
| other | AC * 28 WA * 10 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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(' ');
        int[] num = new int[N];
        for (int i = 0; i < N; i++)
        {
            num[i] = int.Parse(Data[i]);
        }
        Array.Sort(num);
        if(N %2 ==0)
        {
            double x = (num[N / 2]+ num[N / 2 - 1]) / 2;
            System.Console.WriteLine(x);
            return;
        }
        else
        {
            System.Console.WriteLine(num[N/2]);
            return;
        }     
    }
}
            
            
            
        
            
YoiTaka