結果

問題 No.275 中央値を求めよ
ユーザー sanntarohsanntaroh
提出日時 2019-04-25 08:07:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 573 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 109,468 KB
実行使用メモリ 28,240 KB
最終ジャッジ日時 2024-11-17 14:07:24
合計ジャッジ時間 3,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
26,316 KB
testcase_01 AC 33 ms
26,160 KB
testcase_02 AC 33 ms
23,984 KB
testcase_03 AC 31 ms
27,060 KB
testcase_04 AC 33 ms
26,080 KB
testcase_05 AC 33 ms
26,288 KB
testcase_06 AC 33 ms
26,048 KB
testcase_07 AC 39 ms
26,420 KB
testcase_08 AC 37 ms
27,664 KB
testcase_09 AC 36 ms
25,660 KB
testcase_10 AC 39 ms
28,204 KB
testcase_11 AC 30 ms
27,132 KB
testcase_12 AC 31 ms
25,276 KB
testcase_13 AC 31 ms
25,076 KB
testcase_14 AC 31 ms
27,328 KB
testcase_15 AC 39 ms
26,296 KB
testcase_16 AC 39 ms
26,464 KB
testcase_17 AC 39 ms
28,240 KB
testcase_18 AC 39 ms
26,296 KB
testcase_19 AC 38 ms
27,520 KB
testcase_20 AC 39 ms
26,296 KB
testcase_21 AC 39 ms
26,292 KB
testcase_22 AC 39 ms
26,300 KB
testcase_23 AC 37 ms
26,048 KB
testcase_24 AC 39 ms
26,428 KB
testcase_25 AC 40 ms
26,412 KB
testcase_26 AC 37 ms
25,532 KB
testcase_27 AC 37 ms
25,480 KB
testcase_28 AC 31 ms
25,152 KB
testcase_29 AC 37 ms
27,532 KB
testcase_30 AC 31 ms
25,396 KB
testcase_31 AC 39 ms
26,412 KB
testcase_32 AC 37 ms
25,352 KB
testcase_33 AC 37 ms
27,828 KB
testcase_34 AC 32 ms
27,312 KB
testcase_35 AC 37 ms
25,732 KB
testcase_36 AC 36 ms
25,488 KB
testcase_37 AC 39 ms
26,284 KB
testcase_38 AC 38 ms
24,368 KB
testcase_39 AC 37 ms
27,584 KB
testcase_40 AC 37 ms
25,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace test20190423
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.ReadLine();
            var ss = Console.ReadLine().Split(new String[] { " " }, StringSplitOptions.RemoveEmptyEntries).Select(x => int.Parse(x)).ToList();
            ss.Sort();
            var n = ss.Count;
            if (n % 2 != 0) Console.WriteLine(ss[n / 2]);
            else Console.WriteLine((ss[n / 2 - 1] + ss[n / 2]) / 2.0);
            Console.ReadLine();
        }
    }
}
0