結果

問題 No.723 2つの数の和
ユーザー peroonperoon
提出日時 2019-04-04 18:41:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,079 bytes
コンパイル時間 1,126 ms
コンパイル使用メモリ 102,768 KB
実行使用メモリ 406,656 KB
最終ジャッジ日時 2024-12-26 00:43:51
合計ジャッジ時間 18,364 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
383,104 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 53 ms
311,680 KB
testcase_04 AC 104 ms
17,280 KB
testcase_05 AC 109 ms
403,712 KB
testcase_06 AC 72 ms
13,952 KB
testcase_07 AC 33 ms
402,048 KB
testcase_08 AC 38 ms
12,672 KB
testcase_09 AC 61 ms
7,808 KB
testcase_10 AC 65 ms
10,880 KB
testcase_11 AC 23 ms
6,784 KB
testcase_12 AC 35 ms
7,040 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 10 ms
5,248 KB
testcase_19 AC 153 ms
15,872 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 79 ms
9,728 KB
testcase_24 AC 93 ms
406,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<algorithm>
#include<complex>
#include<ctype.h>
#include<iomanip>
#include<iostream>
#include<fstream>
#include<map>
#include<math.h>
#include<numeric>
#include<queue>
#include<set>
#include<stack>
#include<stdio.h>
#include<string>
#include<string>
#include<vector>

using namespace std;
typedef long long ll;

#define FOR(i,a,b) for(ll i=(a);i<(b);++i)
#define ALL(v) (v).begin(), (v).end()
#define p(s) cout<<(s)<<endl
#define p2(s, t) cout << (s) << " " << (t) << endl
#define br() p("")
#define pn(s) cout << (#s) << " " << (s) << endl
#define p_yes() p("Yes")
#define p_no() p("No")

const ll mod = 1e9 + 7;
const ll inf = 1e18;

template < typename T >
void vprint(T &V){
	for(auto v : V){
    	cout << v << " ";
	}
	cout << endl;
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);

    // input
    ll N, X;
    cin >> N >> X;

    map<ll, ll> mp;

    FOR(i, 0, N){
        ll a;
        cin >> a;
        mp[a]++;
    }

    ll sum = 0;
    FOR(i, 0, X+1){
        ll a = X - i;
        sum += mp[i] * mp[a];
    }

    p(sum);
    
    return 0;
}
0