結果

問題 No.723 2つの数の和
ユーザー treeonetreeone
提出日時 2018-08-03 22:40:03
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 1,537 ms
コンパイル使用メモリ 168,204 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-19 17:32:00
合計ジャッジ時間 2,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define int long long
using namespace std;
typedef pair<int, int> P;
const int INF = 1e15;

int d[100010];

signed main(){
    int n, x;
    cin >> n >> x;
    vector<int> a(n);
    rep(i, 0, n){
        cin >> a[i];
        d[a[i]]++;
    }
    int ans = 0;
    rep(i, 0, n){
        int tmp = x - a[i];
        if(0 <= tmp && tmp <= 100000){
            ans += d[tmp];
        }
    }
    cout << ans << endl;
}
0