結果

問題 No.275 中央値を求めよ
ユーザー soi09476291soi09476291
提出日時 2019-11-18 11:16:32
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,238 bytes
コンパイル時間 3,202 ms
コンパイル使用メモリ 109,068 KB
実行使用メモリ 28,428 KB
最終ジャッジ日時 2024-10-01 08:27:37
合計ジャッジ時間 4,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,924 KB
testcase_01 AC 27 ms
26,972 KB
testcase_02 AC 28 ms
24,896 KB
testcase_03 WA -
testcase_04 AC 25 ms
25,028 KB
testcase_05 AC 25 ms
27,072 KB
testcase_06 AC 24 ms
22,964 KB
testcase_07 AC 28 ms
27,352 KB
testcase_08 WA -
testcase_09 AC 30 ms
24,548 KB
testcase_10 AC 29 ms
25,316 KB
testcase_11 AC 23 ms
22,196 KB
testcase_12 AC 25 ms
26,160 KB
testcase_13 WA -
testcase_14 AC 23 ms
21,940 KB
testcase_15 AC 33 ms
27,196 KB
testcase_16 AC 30 ms
27,464 KB
testcase_17 AC 29 ms
25,288 KB
testcase_18 AC 29 ms
27,168 KB
testcase_19 WA -
testcase_20 AC 30 ms
23,088 KB
testcase_21 AC 29 ms
27,548 KB
testcase_22 AC 30 ms
25,312 KB
testcase_23 WA -
testcase_24 AC 29 ms
27,480 KB
testcase_25 AC 32 ms
25,188 KB
testcase_26 WA -
testcase_27 AC 28 ms
22,448 KB
testcase_28 WA -
testcase_29 AC 28 ms
24,536 KB
testcase_30 AC 23 ms
24,092 KB
testcase_31 AC 32 ms
24,860 KB
testcase_32 AC 28 ms
24,540 KB
testcase_33 WA -
testcase_34 AC 22 ms
24,036 KB
testcase_35 AC 29 ms
24,544 KB
testcase_36 WA -
testcase_37 AC 28 ms
27,296 KB
testcase_38 AC 28 ms
23,344 KB
testcase_39 WA -
testcase_40 AC 28 ms
24,628 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]);
            }
            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.Truncate(d) / 10);
            }
        }
    }
}
0