結果

問題 No.723 2つの数の和
ユーザー croonalullaby
提出日時 2018-12-25 18:42:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 588 bytes
コンパイル時間 1,696 ms
コンパイル使用メモリ 167,600 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 13:31:10
合計ジャッジ時間 5,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other AC * 11 RE * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define FOR(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define RFOR(i,a,b) for(int i=(int)(b)-1;i>=(int)(a);i--)
#define REP(i,n) FOR(i,0,n)
#define RREP(i,n) RFOR(i,0,n)
#define LL long long
#define INF INT_MAX/3

const double EPS = 1e-14;
const double PI  = acos(-1.0);


int main(){
  int n, x;
  int m = 1e5;

  cin >> n >> x;

  int a;
  vector<LL> v(m+2);
  REP (i, m + 1) v[i] = 0;
  REP (i, n) {
    cin >> a;
    v[a]++;
  }

  LL ans = 0;
  REP (i, m + 1) {
    if (x - i <= m) ans += v[i] * v[x - i];
  }

  cout << ans << endl;
}
0