結果

問題 No.275 中央値を求めよ
ユーザー soi09476291soi09476291
提出日時 2019-11-18 11:28:16
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,239 bytes
コンパイル時間 916 ms
コンパイル使用メモリ 110,820 KB
実行使用メモリ 29,112 KB
最終ジャッジ日時 2024-10-01 08:41:11
合計ジャッジ時間 2,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
22,968 KB
testcase_01 AC 24 ms
29,112 KB
testcase_02 AC 26 ms
25,056 KB
testcase_03 AC 23 ms
26,328 KB
testcase_04 AC 24 ms
24,880 KB
testcase_05 AC 24 ms
25,024 KB
testcase_06 AC 23 ms
26,944 KB
testcase_07 AC 28 ms
25,376 KB
testcase_08 AC 25 ms
22,580 KB
testcase_09 WA -
testcase_10 AC 27 ms
27,300 KB
testcase_11 RE -
testcase_12 AC 21 ms
23,980 KB
testcase_13 AC 21 ms
23,960 KB
testcase_14 AC 21 ms
24,168 KB
testcase_15 AC 28 ms
25,188 KB
testcase_16 AC 27 ms
25,188 KB
testcase_17 AC 28 ms
25,288 KB
testcase_18 AC 26 ms
25,444 KB
testcase_19 AC 26 ms
24,608 KB
testcase_20 AC 28 ms
27,416 KB
testcase_21 AC 27 ms
27,304 KB
testcase_22 AC 29 ms
27,416 KB
testcase_23 AC 28 ms
26,528 KB
testcase_24 AC 27 ms
24,996 KB
testcase_25 AC 28 ms
25,308 KB
testcase_26 AC 26 ms
24,496 KB
testcase_27 AC 26 ms
24,800 KB
testcase_28 AC 21 ms
24,032 KB
testcase_29 WA -
testcase_30 AC 21 ms
24,164 KB
testcase_31 AC 30 ms
27,292 KB
testcase_32 WA -
testcase_33 AC 27 ms
24,748 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 25 ms
24,480 KB
testcase_37 AC 27 ms
27,164 KB
testcase_38 AC 27 ms
25,316 KB
testcase_39 AC 24 ms
24,544 KB
testcase_40 AC 29 ms
26,548 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.Text;
using System.Linq;

namespace ConsoleApp11
{
    class Program
    {
        static void Main(string[] args)
        {
            int tem;

            int N = int.Parse(Console.ReadLine());

            var input = Console.ReadLine().Split(' ');

            int[] A = new int[N];

            for(int i = 0; i < N; i++)
            {
                A[i] = int.Parse(input[i]);
            }

            for(int i = 0; i < N - 1; i++)
            {
                for(int j = i + 1; j < N; j++)
                {
                    if(A[i] > A[j])
                    {
                        tem = A[j];
                        A[j] = A[i];
                        A[i] = tem;
                    }
                }
            }

            if(N % 2 != 0)
            {
                int j = Convert.ToInt32(Math.Round((double)N / 2));

                Console.WriteLine(A[j - 1]);
            }
            else if(N % 2 == 0)
            {
                int a = N / 2;
                int b = (N / 2) - 1;

                double d = Convert.ToDouble((A[a] + A[b]) / 2.0);

                d = d * 10;

                Console.WriteLine(Math.Floor(d) / 10);
            }
        }
    }
}
0