結果

問題 No.723 2つの数の和
ユーザー るこーそーるこーそー
提出日時 2024-08-23 23:00:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,208 bytes
コンパイル時間 5,349 ms
コンパイル使用メモリ 308,468 KB
実行使用メモリ 12,456 KB
最終ジャッジ日時 2024-08-23 23:00:49
合計ジャッジ時間 9,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,320 KB
testcase_01 AC 87 ms
12,456 KB
testcase_02 AC 86 ms
12,452 KB
testcase_03 AC 108 ms
12,324 KB
testcase_04 AC 113 ms
12,452 KB
testcase_05 AC 111 ms
12,456 KB
testcase_06 AC 110 ms
12,324 KB
testcase_07 AC 98 ms
12,448 KB
testcase_08 AC 100 ms
12,448 KB
testcase_09 AC 115 ms
12,324 KB
testcase_10 AC 97 ms
12,452 KB
testcase_11 AC 90 ms
12,376 KB
testcase_12 AC 101 ms
12,452 KB
testcase_13 AC 115 ms
12,324 KB
testcase_14 AC 94 ms
12,320 KB
testcase_15 AC 99 ms
12,324 KB
testcase_16 AC 106 ms
12,448 KB
testcase_17 AC 111 ms
12,452 KB
testcase_18 AC 102 ms
12,328 KB
testcase_19 AC 117 ms
12,284 KB
testcase_20 AC 90 ms
12,324 KB
testcase_21 AC 85 ms
12,448 KB
testcase_22 AC 84 ms
12,328 KB
testcase_23 AC 115 ms
12,324 KB
testcase_24 AC 96 ms
12,324 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_ll(f,f);
    if (x>=f.size()){
        cout << 0 << endl;
    }else {
        cout << f[x] << endl;
    }
}
0