結果

問題 No.1131 Deviation Score
ユーザー keymoonkeymoon
提出日時 2020-12-31 19:47:26
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 106,496 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-06-28 03:55:36
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
22,528 KB
testcase_01 AC 39 ms
20,480 KB
testcase_02 AC 181 ms
30,592 KB
testcase_03 AC 100 ms
23,680 KB
testcase_04 AC 167 ms
30,080 KB
testcase_05 AC 82 ms
22,972 KB
testcase_06 AC 173 ms
30,464 KB
testcase_07 AC 98 ms
23,808 KB
testcase_08 AC 155 ms
29,696 KB
testcase_09 AC 79 ms
22,756 KB
testcase_10 AC 155 ms
29,568 KB
testcase_11 AC 157 ms
29,568 KB
testcase_12 AC 137 ms
26,164 KB
testcase_13 AC 172 ms
30,208 KB
testcase_14 AC 64 ms
21,888 KB
testcase_15 AC 64 ms
22,272 KB
testcase_16 AC 164 ms
29,952 KB
testcase_17 AC 85 ms
23,068 KB
testcase_18 AC 195 ms
31,488 KB
testcase_19 AC 36 ms
20,480 KB
testcase_20 AC 31 ms
19,840 KB
testcase_21 AC 31 ms
20,096 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.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        var a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var avg = a.Average();

        Console.WriteLine(string.Join("\n", a.Select(x => Floor(50 - (avg - x) / 2))));
    }
}
0