結果

問題 No.1131 Deviation Score
ユーザー mobchanmobchan
提出日時 2023-04-25 08:18:02
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 8,075 ms
コンパイル使用メモリ 167,784 KB
実行使用メモリ 185,908 KB
最終ジャッジ日時 2024-11-14 05:00:41
合計ジャッジ時間 13,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
33,792 KB
testcase_01 AC 66 ms
30,832 KB
testcase_02 AC 266 ms
40,064 KB
testcase_03 AC 160 ms
35,576 KB
testcase_04 AC 245 ms
39,296 KB
testcase_05 AC 135 ms
34,304 KB
testcase_06 AC 262 ms
39,680 KB
testcase_07 AC 163 ms
35,712 KB
testcase_08 AC 235 ms
38,892 KB
testcase_09 AC 135 ms
34,560 KB
testcase_10 AC 223 ms
38,656 KB
testcase_11 AC 235 ms
38,784 KB
testcase_12 AC 210 ms
37,760 KB
testcase_13 AC 258 ms
39,808 KB
testcase_14 AC 112 ms
33,536 KB
testcase_15 AC 110 ms
33,664 KB
testcase_16 AC 239 ms
38,784 KB
testcase_17 AC 142 ms
34,560 KB
testcase_18 AC 287 ms
41,588 KB
testcase_19 AC 63 ms
30,976 KB
testcase_20 AC 60 ms
30,208 KB
testcase_21 AC 61 ms
185,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var N = int.Parse(Console.ReadLine());
        var x = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var A = x.Average();

        for (int i = 0; i < N; i++)
        {
            var D = Math.Floor(50 - (A - x[i]) / 2);
            Console.WriteLine("{0}", D);
        }
    }
}
0