結果

問題 No.723 2つの数の和
ユーザー ninoinuininoinui
提出日時 2020-07-20 13:44:07
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 212,580 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-12-23 14:46:26
合計ジャッジ時間 4,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 58 ms
7,692 KB
testcase_04 AC 74 ms
8,192 KB
testcase_05 AC 68 ms
8,448 KB
testcase_06 AC 71 ms
8,248 KB
testcase_07 AC 31 ms
6,816 KB
testcase_08 AC 39 ms
6,820 KB
testcase_09 AC 79 ms
8,960 KB
testcase_10 AC 30 ms
6,816 KB
testcase_11 AC 8 ms
6,816 KB
testcase_12 AC 44 ms
7,168 KB
testcase_13 AC 76 ms
9,472 KB
testcase_14 AC 19 ms
6,820 KB
testcase_15 AC 32 ms
6,816 KB
testcase_16 AC 49 ms
7,852 KB
testcase_17 AC 66 ms
8,760 KB
testcase_18 AC 16 ms
6,820 KB
testcase_19 AC 30 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,820 KB
testcase_23 AC 58 ms
8,320 KB
testcase_24 AC 23 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N, X;
  cin >> N >> X;
  vector<int> A(N);
  for (int i = 0; i < N; i++) cin >> A.at(i);
  map<int, int> MA;
  for (auto a : A) MA[a]++;
  long ans = 0;
  for (auto a : A) ans += MA[X - a];
  cout << ans << "\n";
}
0