結果

問題 No.723 2つの数の和
ユーザー るこーそーるこーそー
提出日時 2024-08-23 22:55:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,125 bytes
コンパイル時間 6,048 ms
コンパイル使用メモリ 317,284 KB
実行使用メモリ 11,696 KB
最終ジャッジ日時 2024-08-23 22:55:55
合計ジャッジ時間 8,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
11,532 KB
testcase_01 AC 41 ms
11,644 KB
testcase_02 AC 45 ms
11,464 KB
testcase_03 AC 59 ms
11,656 KB
testcase_04 AC 67 ms
11,500 KB
testcase_05 AC 63 ms
11,528 KB
testcase_06 AC 64 ms
11,636 KB
testcase_07 AC 54 ms
11,532 KB
testcase_08 AC 52 ms
11,492 KB
testcase_09 AC 69 ms
11,528 KB
testcase_10 AC 53 ms
11,660 KB
testcase_11 AC 47 ms
11,652 KB
testcase_12 AC 57 ms
11,528 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 45 ms
11,596 KB
testcase_21 AC 41 ms
11,548 KB
testcase_22 AC 42 ms
11,660 KB
testcase_23 AC 67 ms
11,532 KB
testcase_24 AC 50 ms
11,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, s, n) for (int i = (s); i < (int)(n); i++)
#define all(v) v.begin(), v.end()
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define vvi vector<vi>
#define vvl vector<vl>
#define vvvi vector<vvi>
#define vvvl vector<vvl>

template <class T>
auto debug(const T &vec){
    if constexpr (!std::is_arithmetic_v<typename T::value_type>){
        for (const auto &v : vec)debug<typename T::value_type>(v);
        cout << endl;}
    else{
        for (const auto &e : vec){
            cout << e << " ";}
        cout << endl;}
}

void print(){cout << '\n';}
template <class T, class... Ts>
void print(const T &a, const Ts &...b){
    cout << a;
    (cout << ... << (cout << ' ', b));
    cout << '\n';}

int main() {
    ll n,x;
    cin >> n >> x;

    const ll M=2e5+1;
    vl f(M,0);
    rep(i,n){
        ll a;
        cin >> a;
        f[a]++;
    }

    f=convolution(f,f);
    print(f[x]);
}
0