結果

問題 No.1131 Deviation Score
ユーザー ngng628ngng628
提出日時 2020-08-03 15:05:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 576 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 112,532 KB
実行使用メモリ 28,928 KB
最終ジャッジ日時 2024-06-28 03:44:08
合計ジャッジ時間 8,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
21,760 KB
testcase_01 AC 39 ms
19,328 KB
testcase_02 AC 520 ms
28,288 KB
testcase_03 AC 240 ms
24,320 KB
testcase_04 AC 454 ms
27,776 KB
testcase_05 AC 184 ms
22,656 KB
testcase_06 AC 498 ms
28,160 KB
testcase_07 AC 243 ms
24,064 KB
testcase_08 AC 438 ms
27,520 KB
testcase_09 AC 179 ms
22,144 KB
testcase_10 AC 426 ms
27,392 KB
testcase_11 AC 456 ms
27,392 KB
testcase_12 AC 374 ms
27,008 KB
testcase_13 AC 489 ms
28,032 KB
testcase_14 AC 129 ms
21,120 KB
testcase_15 AC 125 ms
21,120 KB
testcase_16 AC 440 ms
27,776 KB
testcase_17 AC 197 ms
22,784 KB
testcase_18 AC 576 ms
28,928 KB
testcase_19 AC 34 ms
19,200 KB
testcase_20 AC 28 ms
18,816 KB
testcase_21 AC 27 ms
18,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
class Myon
{
    public Myon() {}
	static int Main(string[] args)
	{
        cin = new Scanner();
        new Myon().calc();
        return 0;
	}

    static Scanner cin;

    void calc()
    {
        int N = cin.nextInt();
        int[] xs = cin.ArrayInt(N);

        double A = 0.0;
        foreach (int x in xs)
        {
            A += x;
        }
        A /= N;

        foreach (int x in xs)
        {
            Console.WriteLine(Math.Floor(50.0 - (A - x) / 2.0));
        }
    }
}

class Scanner
{
    string[] s;
    int i;
 
    char[] cs = new char[] { ' ' };
 
    public Scanner()
    {
        s = new string[0];
        i = 0;
    }
 
    public string next()
    {
        if (i < s.Length) return s[i++];
        string st = Console.ReadLine();
        while (st == "") st = Console.ReadLine();
        s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
        if (s.Length == 0) return next();
        i = 0;
        return s[i++];
    }
 
    public int nextInt()
    {
        return int.Parse(next());
    }
    public int[] ArrayInt(int N, int add = 0)
    {
        int[] Array = new int[N];
        for (int i = 0; i < N; i++)
        {
            Array[i] = nextInt() + add;
        }
        return Array;
    }
}
0