結果

問題 No.723 2つの数の和
ユーザー MayimgMayimg
提出日時 2019-04-15 20:26:54
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 201,764 KB
最終ジャッジ日時 2025-01-07 02:14:39
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 39 ms
6,820 KB
testcase_04 AC 58 ms
6,824 KB
testcase_05 AC 45 ms
6,816 KB
testcase_06 AC 56 ms
6,816 KB
testcase_07 AC 22 ms
6,816 KB
testcase_08 AC 24 ms
6,820 KB
testcase_09 AC 54 ms
6,816 KB
testcase_10 AC 24 ms
6,816 KB
testcase_11 AC 5 ms
6,816 KB
testcase_12 AC 29 ms
6,816 KB
testcase_13 AC 54 ms
6,816 KB
testcase_14 AC 12 ms
6,820 KB
testcase_15 AC 19 ms
6,816 KB
testcase_16 AC 33 ms
6,820 KB
testcase_17 AC 43 ms
6,820 KB
testcase_18 AC 11 ms
6,820 KB
testcase_19 AC 12 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 56 ms
8,064 KB
testcase_24 AC 15 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
signed main() {
  ios::sync_with_stdio(false); cin.tie(0);
  int n, x;
  cin >> n >> x;
  map<int, int> mp;
  long long ans = 0;
  for (int i = 0; i < n; i++) {
    int in;
    cin >> in;
    mp[in]++;
    if (!mp.count(x - in)) continue;
    ans += mp[x - in] * 2 + (in + in == x ? -1 : 0);
  }
  cout << ans << endl;
  return 0;
}
0