結果

問題 No.275 中央値を求めよ
ユーザー oldlevin
提出日時 2020-02-21 07:40:23
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 637 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 109,752 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-10-08 19:45:07
合計ジャッジ時間 3,781 ms
ジャッジサーバーID
(参考情報)
judge3 / 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;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using static System.Console;

public class hello{
    public static void Main(){ //yukicoder No.275 中央値を求めよ 
    
        var n = int.Parse(ReadLine().Trim());
        var s = ReadLine().Trim().Split(' ').Select(int.Parse).ToArray();
        Array.Sort(s);
        //WriteLine(string.Join(" ",s));
        
        if(s.Length%2 == 1){
            WriteLine(s[(int)(s.Length/2)]);
        }else{
            var i = s.Length/2;
            float v = (float)(s[i]+s[i-1])/2;
            WriteLine(v);
        }
    }
}
0