結果

問題 No.723 2つの数の和
ユーザー Yut176Yut176
提出日時 2019-05-26 23:52:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 94,556 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-09-17 15:24:15
合計ジャッジ時間 2,224 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 41 ms
6,912 KB
testcase_04 AC 54 ms
7,680 KB
testcase_05 AC 47 ms
7,424 KB
testcase_06 AC 50 ms
7,552 KB
testcase_07 AC 23 ms
5,692 KB
testcase_08 AC 25 ms
5,764 KB
testcase_09 AC 52 ms
7,808 KB
testcase_10 AC 22 ms
5,464 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 28 ms
6,272 KB
testcase_13 AC 55 ms
7,936 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 22 ms
5,636 KB
testcase_16 AC 33 ms
6,656 KB
testcase_17 AC 43 ms
7,296 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 28 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 72 ms
10,240 KB
testcase_24 AC 16 ms
5,376 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) {
  long long n, x; cin >> n >> x;
  vector<long long> a(n);
  map<long long, long long> 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