結果

問題 No.723 2つの数の和
ユーザー kekenxkekenx
提出日時 2020-02-18 16:31:20
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 175,884 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-06 15:38:25
合計ジャッジ時間 3,892 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 59 ms
7,296 KB
testcase_04 AC 95 ms
9,472 KB
testcase_05 AC 95 ms
9,984 KB
testcase_06 AC 71 ms
7,936 KB
testcase_07 AC 31 ms
6,820 KB
testcase_08 AC 36 ms
6,820 KB
testcase_09 AC 74 ms
7,680 KB
testcase_10 AC 36 ms
6,816 KB
testcase_11 AC 7 ms
6,816 KB
testcase_12 AC 38 ms
6,816 KB
testcase_13 AC 116 ms
11,264 KB
testcase_14 AC 29 ms
6,820 KB
testcase_15 AC 51 ms
7,552 KB
testcase_16 AC 76 ms
9,216 KB
testcase_17 AC 100 ms
10,368 KB
testcase_18 WA -
testcase_19 WA -
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 86 ms
9,728 KB
testcase_24 AC 33 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

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

  ll ans = 0;
  for (auto e: m) {
    if (e.first > x) continue;
    if (x - e.first == e.first) {
      ans += m[e.first] * m[e.first];
    } else {
      ans += m[e.first] * m[x - e.first];
    }
  }
  cout << ans << endl;
  return 0;
}
0