結果

問題 No.1618 Convolution?
ユーザー kakel-sankakel-san
提出日時 2021-07-22 22:04:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 109,480 KB
実行使用メモリ 70,316 KB
最終ジャッジ日時 2024-07-17 17:56:37
合計ジャッジ時間 10,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,200 KB
testcase_01 AC 28 ms
19,200 KB
testcase_02 AC 217 ms
50,224 KB
testcase_03 AC 251 ms
56,952 KB
testcase_04 AC 226 ms
52,248 KB
testcase_05 AC 47 ms
22,528 KB
testcase_06 AC 287 ms
60,056 KB
testcase_07 AC 291 ms
60,164 KB
testcase_08 AC 232 ms
52,020 KB
testcase_09 AC 338 ms
68,480 KB
testcase_10 AC 240 ms
56,252 KB
testcase_11 AC 326 ms
64,960 KB
testcase_12 AC 341 ms
70,144 KB
testcase_13 AC 341 ms
70,060 KB
testcase_14 AC 341 ms
70,316 KB
testcase_15 AC 339 ms
69,944 KB
testcase_16 AC 341 ms
70,084 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.Generic;
using static System.Console;
using System.Linq;

class yuki1
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var n = NN;
        var a = NList;
        var b = NList;

        var ab = new long[n];
        for (var i = 0; i < n; ++i) ab[i] = a[i] + b[i];
        var cum = new long[n];
        cum[0] = ab[0];
        for (var i = 1; i < n; ++i) cum[i] = cum[i - 1] + ab[i];
        var c = new long[2 * n];
        for (var i = 1; i <= n; ++i) c[i] = c[i - 1] + cum[i - 1];
        for (var i = n + 1; i < 2 * n; ++i) c[i] = c[i - 1] - n * ab[i - n - 1] + cum[n - 1] - cum[i - n - 1];

        WriteLine(string.Join(" ", c));
    }
}
0