結果

問題 No.1131 Deviation Score
ユーザー curryudon08curryudon08
提出日時 2021-02-23 19:27:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 615 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 854 ms
コンパイル使用メモリ 110,756 KB
実行使用メモリ 39,204 KB
最終ジャッジ日時 2024-09-22 14:13:57
合計ジャッジ時間 9,004 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
29,292 KB
testcase_01 AC 45 ms
26,664 KB
testcase_02 AC 533 ms
37,728 KB
testcase_03 AC 257 ms
29,504 KB
testcase_04 AC 487 ms
39,204 KB
testcase_05 AC 204 ms
27,436 KB
testcase_06 AC 526 ms
35,644 KB
testcase_07 AC 260 ms
31,448 KB
testcase_08 AC 496 ms
39,120 KB
testcase_09 AC 192 ms
27,000 KB
testcase_10 AC 445 ms
34,716 KB
testcase_11 AC 459 ms
37,080 KB
testcase_12 AC 402 ms
30,544 KB
testcase_13 AC 535 ms
35,640 KB
testcase_14 AC 135 ms
27,312 KB
testcase_15 AC 138 ms
26,784 KB
testcase_16 AC 520 ms
35,348 KB
testcase_17 AC 207 ms
27,440 KB
testcase_18 AC 615 ms
38,260 KB
testcase_19 AC 38 ms
26,408 KB
testcase_20 AC 31 ms
26,280 KB
testcase_21 AC 30 ms
23,856 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 _1131
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var v = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();

            var a = v.Average();

            foreach(var m in v){
                var r = 50 - ((a - m) / 2);
                Console.WriteLine(Math.Floor(r));
            }
        }
    }
}
0