結果

問題 No.723 2つの数の和
ユーザー 🍮かんプリン
提出日時 2019-02-23 18:08:14
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 1,079 ms
コンパイル使用メモリ 157,680 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 13:35:56
合計ジャッジ時間 1,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
int gcd(int a,int b){return b?gcd(b,a%b):a;}

ll a[100001];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll n,b;
    ll x;
    ll c=0;
    cin >> n >> x;
    rep(i,n) {
        cin >> b;
        a[b]++;
    }
    rep(i,x+1) {
        if (i>100000) break;
        if (a[i]!=0) {
            if (x-i<=100000 && a[x-i]>0) {
                c+=a[x-i]*a[i];
            }
        }
    }
    cout << c << endl;
    return 0;
}
0