結果

問題 No.1131 Deviation Score
ユーザー curryudon08
提出日時 2021-02-23 19:23:22
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 109,472 KB
実行使用メモリ 39,724 KB
最終ジャッジ日時 2024-09-22 14:11:25
合計ジャッジ時間 11,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(r);
            }
        }
    }
}
0