結果

問題 No.723 2つの数の和
ユーザー るこーそーるこーそー
提出日時 2024-08-23 22:56:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,172 bytes
コンパイル時間 5,421 ms
コンパイル使用メモリ 316,292 KB
実行使用メモリ 11,696 KB
最終ジャッジ日時 2024-08-23 22:56:44
合計ジャッジ時間 8,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
11,656 KB
testcase_01 AC 42 ms
11,696 KB
testcase_02 AC 45 ms
11,496 KB
testcase_03 AC 64 ms
11,528 KB
testcase_04 AC 70 ms
11,556 KB
testcase_05 AC 66 ms
11,528 KB
testcase_06 AC 67 ms
11,540 KB
testcase_07 AC 55 ms
11,524 KB
testcase_08 AC 56 ms
11,528 KB
testcase_09 AC 71 ms
11,560 KB
testcase_10 AC 54 ms
11,544 KB
testcase_11 AC 45 ms
11,524 KB
testcase_12 AC 59 ms
11,524 KB
testcase_13 AC 71 ms
11,476 KB
testcase_14 AC 50 ms
11,528 KB
testcase_15 AC 56 ms
11,616 KB
testcase_16 AC 60 ms
11,576 KB
testcase_17 AC 67 ms
11,552 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 43 ms
11,540 KB
testcase_21 AC 43 ms
11,524 KB
testcase_22 AC 41 ms
11,476 KB
testcase_23 AC 71 ms
11,676 KB
testcase_24 AC 50 ms
11,528 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);
    if (x>=f.size()){
        print(0);
    }else{print(f[x]);}
}
0