結果

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

ソースコード

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 (0 <= x - i && x - i <= m) ans += v[i] * v[x - i];
  }

  cout << ans << endl;
}
0