結果

問題 No.1618 Convolution?
ユーザー nebukuro09nebukuro09
提出日時 2021-07-22 21:50:11
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 117,920 KB
実行使用メモリ 34,036 KB
最終ジャッジ日時 2024-06-22 11:54:41
合計ジャッジ時間 7,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 113 ms
21,124 KB
testcase_03 AC 134 ms
21,972 KB
testcase_04 AC 115 ms
19,812 KB
testcase_05 AC 9 ms
6,944 KB
testcase_06 AC 157 ms
24,180 KB
testcase_07 AC 160 ms
24,532 KB
testcase_08 AC 116 ms
19,604 KB
testcase_09 AC 200 ms
32,440 KB
testcase_10 AC 124 ms
21,380 KB
testcase_11 AC 179 ms
31,640 KB
testcase_12 AC 200 ms
34,036 KB
testcase_13 AC 197 ms
32,656 KB
testcase_14 AC 195 ms
32,452 KB
testcase_15 AC 196 ms
33,576 KB
testcase_16 AC 196 ms
33,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

void main() {
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!long).array;
    auto B = readln.split.map!(to!long).array;

    long s = 0;
    long t = 0;
    long[] ans;
    foreach (i; 0..N) {
        ans ~= t;
        t += A[i] + B[i] + s;
        s += A[i] + B[i];
    }
    foreach (i; 0..N) {
        ans ~= t;
        t -= N*A[i] + N*B[i];
        s -= A[i] + B[i];
        t += s;
    }


    ans.map!(to!string).join(" ").writeln;
}
0