結果

問題 No.970 数列変換マシン
ユーザー keymoonkeymoon
提出日時 2020-01-17 21:23:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 1,360 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 114,008 KB
実行使用メモリ 42,508 KB
最終ジャッジ日時 2024-06-25 18:26:57
合計ジャッジ時間 3,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
38,672 KB
testcase_01 AC 97 ms
40,336 KB
testcase_02 AC 99 ms
42,508 KB
testcase_03 AC 94 ms
37,104 KB
testcase_04 AC 87 ms
39,156 KB
testcase_05 AC 96 ms
40,124 KB
testcase_06 AC 75 ms
37,948 KB
testcase_07 AC 91 ms
39,036 KB
testcase_08 AC 93 ms
39,028 KB
testcase_09 AC 35 ms
25,508 KB
testcase_10 AC 35 ms
25,508 KB
testcase_11 AC 34 ms
27,932 KB
testcase_12 AC 34 ms
25,604 KB
testcase_13 AC 33 ms
23,600 KB
testcase_14 AC 37 ms
26,020 KB
testcase_15 AC 30 ms
25,380 KB
testcase_16 AC 29 ms
25,264 KB
testcase_17 AC 29 ms
24,996 KB
testcase_18 AC 29 ms
27,344 KB
testcase_19 AC 30 ms
25,264 KB
testcase_20 AC 29 ms
25,124 KB
testcase_21 AC 29 ms
27,416 KB
testcase_22 AC 29 ms
24,992 KB
testcase_23 AC 28 ms
27,484 KB
testcase_24 AC 30 ms
27,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 Reader;
using static System.Math;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;

public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        var a = Console.ReadLine().Split().Select(long.Parse).ToArray();
        var sum = a.Sum();

        Console.WriteLine(string.Join(" ", a.Select(x => sum - x * (n - 1))));
    }
}


static class Reader
{
    const int BUF_SIZE = 1 << 12;
    static Stream Stream = Console.OpenStandardInput();
    static byte[] Buffer = new byte[BUF_SIZE];
    static int ptr = BUF_SIZE - 1;
    static void Move() { if (++ptr >= Buffer.Length) { Stream.Read(Buffer, 0, BUF_SIZE); ptr = 0; } }


    public static int NextInt
    {
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
        get
        {
            int res = 0; while (Buffer[ptr] < 48) Move();
            do { res = res * 10 + (int)(Buffer[ptr] ^ 48); Move(); } while (48 <= Buffer[ptr]);
            return res;
        }
    }
}
0