結果

問題 No.275 中央値を求めよ
ユーザー ooh_20ooh_20
提出日時 2017-05-29 12:39:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 618 bytes
コンパイル時間 1,209 ms
コンパイル使用メモリ 112,860 KB
実行使用メモリ 30,616 KB
最終ジャッジ日時 2024-06-25 00:30:17
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
26,144 KB
testcase_01 AC 31 ms
28,108 KB
testcase_02 AC 32 ms
28,240 KB
testcase_03 AC 28 ms
25,120 KB
testcase_04 AC 29 ms
26,032 KB
testcase_05 AC 30 ms
25,888 KB
testcase_06 AC 32 ms
27,976 KB
testcase_07 AC 37 ms
26,656 KB
testcase_08 AC 34 ms
25,764 KB
testcase_09 AC 35 ms
27,748 KB
testcase_10 AC 36 ms
26,268 KB
testcase_11 AC 27 ms
25,136 KB
testcase_12 AC 31 ms
27,572 KB
testcase_13 AC 29 ms
27,284 KB
testcase_14 AC 30 ms
27,416 KB
testcase_15 AC 36 ms
26,396 KB
testcase_16 AC 35 ms
26,416 KB
testcase_17 AC 36 ms
28,612 KB
testcase_18 AC 36 ms
26,508 KB
testcase_19 AC 33 ms
23,732 KB
testcase_20 AC 35 ms
28,316 KB
testcase_21 AC 35 ms
28,320 KB
testcase_22 AC 36 ms
26,408 KB
testcase_23 AC 35 ms
25,904 KB
testcase_24 AC 36 ms
28,568 KB
testcase_25 AC 35 ms
30,616 KB
testcase_26 AC 34 ms
25,636 KB
testcase_27 AC 33 ms
25,452 KB
testcase_28 AC 29 ms
25,124 KB
testcase_29 AC 34 ms
25,636 KB
testcase_30 AC 29 ms
23,096 KB
testcase_31 AC 36 ms
26,540 KB
testcase_32 AC 33 ms
27,676 KB
testcase_33 AC 34 ms
23,484 KB
testcase_34 AC 30 ms
25,120 KB
testcase_35 AC 33 ms
25,776 KB
testcase_36 AC 34 ms
25,908 KB
testcase_37 AC 35 ms
28,824 KB
testcase_38 AC 36 ms
24,488 KB
testcase_39 AC 32 ms
25,648 KB
testcase_40 AC 33 ms
25,600 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;

namespace No._275
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine()); 
            int[] A = Console.ReadLine().Trim().Split(' ').Select(x => int.Parse(x)).ToArray();

            Array.Sort(A);

            if (A.Length % 2 == 1)
            {
                Console.WriteLine(A[A.Length / 2]);
            }
            else
            {
                float median = ((float)A[A.Length / 2] + (float)A[A.Length / 2 - 1]) / 2f;

                Console.WriteLine(median);
            }
        }
    }
}
0