結果

問題 No.723 2つの数の和
ユーザー Yut176Yut176
提出日時 2019-05-26 23:51:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 94,184 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-09-17 15:24:12
合計ジャッジ時間 2,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 48 ms
6,944 KB
testcase_04 AC 62 ms
6,940 KB
testcase_05 AC 56 ms
6,944 KB
testcase_06 AC 59 ms
6,944 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 30 ms
6,940 KB
testcase_09 AC 62 ms
6,940 KB
testcase_10 AC 25 ms
6,940 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 33 ms
6,944 KB
testcase_13 AC 60 ms
6,948 KB
testcase_14 AC 15 ms
6,944 KB
testcase_15 AC 25 ms
6,940 KB
testcase_16 AC 38 ms
6,944 KB
testcase_17 AC 51 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 75 ms
8,448 KB
testcase_24 AC 19 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<vector>
#include<string>
#include<sstream>
#include<cmath>
#include<numeric>
#include<map>
#include<stack>
#include<queue>
using namespace std;
long long mod = 1e9 + 7;

int main(void) {
  int n, x; cin >> n >> x;
  vector<int> a(n);
  map<int, int> m;
  for(int i=0; i<n; i++){
    cin >> a[i];
    m[a[i]]++;
  }

  long long cnt = 0;
  for(auto i=m.begin(); i!=m.end(); i++) {
    if(i->first*2 == x) {
      cnt += i->second * (i->second);
    }else{
      if(m.find(x - i->first) == m.end()) continue;
      cnt += i->second * m[x - i->first];
    }
  }
  cout << cnt << endl;
  

  return 0;
}



// EOF
0