結果

問題 No.3367 Looks like a convolution
コンテスト
ユーザー Naru820
提出日時 2025-11-01 19:18:19
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 738 bytes
コンパイル時間 9,348 ms
コンパイル使用メモリ 352,596 KB
実行使用メモリ 37,788 KB
最終ジャッジ日時 2025-11-17 20:42:13
合計ジャッジ時間 12,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define all(a) begin(a), end(a)

const int min_N = 1;
const int max_N = 200000;
const ll min_A = 0LL;
const ll max_A = 1000000000LL;
int main() {
    registerValidation();
    int N = inf.readInt(min_N, max_N);
    inf.readEoln();
    for (int i = 0; i < N; ++i) {
        inf.readLong(min_A, max_A);
        if (i == N - 1) {
            inf.readEoln();
        } else {
            inf.readSpace();
        }
    }
    for (int i = 0; i < N; ++i) {
        inf.readLong(min_A, max_A);
        if (i == N - 1) {
            inf.readEoln();
        } else {
            inf.readSpace();
        }
    }
    inf.readEof();
}
0