結果

問題 No.609 Noelちゃんと星々
ユーザー NoNo
提出日時 2018-01-24 02:06:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 113,900 KB
実行使用メモリ 33,920 KB
最終ジャッジ日時 2024-06-07 19:22:07
合計ジャッジ時間 3,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
27,264 KB
testcase_01 AC 63 ms
24,064 KB
testcase_02 AC 53 ms
21,912 KB
testcase_03 AC 61 ms
23,272 KB
testcase_04 AC 47 ms
21,372 KB
testcase_05 AC 100 ms
28,800 KB
testcase_06 AC 90 ms
27,648 KB
testcase_07 AC 67 ms
24,688 KB
testcase_08 AC 42 ms
20,608 KB
testcase_09 AC 54 ms
22,144 KB
testcase_10 AC 76 ms
24,960 KB
testcase_11 AC 75 ms
24,576 KB
testcase_12 AC 83 ms
26,624 KB
testcase_13 AC 44 ms
20,992 KB
testcase_14 AC 39 ms
20,352 KB
testcase_15 AC 93 ms
27,776 KB
testcase_16 AC 108 ms
33,664 KB
testcase_17 AC 86 ms
27,008 KB
testcase_18 AC 53 ms
21,876 KB
testcase_19 AC 91 ms
27,648 KB
testcase_20 AC 112 ms
33,792 KB
testcase_21 AC 112 ms
33,792 KB
testcase_22 AC 110 ms
33,664 KB
testcase_23 AC 113 ms
33,664 KB
testcase_24 AC 115 ms
33,920 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 y
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int[] y = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();
            Array.Sort(y);

            int c = 0;
            int d = 0;
            if (n == 1)
            {
                c = y[0];
                d = y[0];
            }
            else if (n % 2 == 0)
            {
                c = y[n / 2];
                d = y[n / 2 + 1];
            }
            else
            {
                c = y[n / 2];
                d = y[n / 2 + 1];
            }

            long ans1 = 0;
            long ans2 = 0;

            foreach (var i in y)
            {
                ans1 += Math.Abs(c - i);
                ans2 += Math.Abs(d - i);
            }

            Console.WriteLine((long)Math.Min(ans1, ans2));
        }
    }
}
0