結果

問題 No.723 2つの数の和
ユーザー aaaaaaiu
提出日時 2019-08-20 23:45:54
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 199,900 KB
最終ジャッジ日時 2025-01-07 14:24:17
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int n,x;cin>>n>>x;
    map<int,int> mp;
    ll ans=0;
    for (int i=0;i<n;i++) {
        int a;cin>>a;
        mp[a]++;
        ans+=2*mp[x-a];
        if (a==x-a) ans--;
    }
    cout<<ans<<endl;
    return 0;
}
0