結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
7,404 KB
testcase_01 AC 22 ms
7,536 KB
testcase_02 AC 22 ms
7,404 KB
testcase_03 AC 41 ms
7,428 KB
testcase_04 AC 46 ms
7,532 KB
testcase_05 AC 44 ms
7,400 KB
testcase_06 AC 45 ms
7,400 KB
testcase_07 AC 30 ms
7,408 KB
testcase_08 AC 50 ms
7,532 KB
testcase_09 AC 45 ms
7,400 KB
testcase_10 AC 33 ms
7,404 KB
testcase_11 AC 23 ms
7,528 KB
testcase_12 AC 35 ms
7,532 KB
testcase_13 AC 48 ms
7,532 KB
testcase_14 AC 27 ms
7,528 KB
testcase_15 AC 33 ms
7,528 KB
testcase_16 AC 39 ms
7,408 KB
testcase_17 AC 43 ms
7,368 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 21 ms
7,404 KB
testcase_21 AC 22 ms
7,532 KB
testcase_22 AC 22 ms
7,408 KB
testcase_23 AC 47 ms
7,532 KB
testcase_24 AC 30 ms
7,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=1e5+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