結果

問題 No.723 2つの数の和
ユーザー imoni_kawaiiimoni_kawaii
提出日時 2020-06-08 23:09:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 208,244 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-08 02:37:20
合計ジャッジ時間 3,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 44 ms
7,808 KB
testcase_04 AC 56 ms
8,448 KB
testcase_05 AC 54 ms
8,704 KB
testcase_06 AC 55 ms
8,448 KB
testcase_07 AC 27 ms
6,528 KB
testcase_08 AC 28 ms
6,656 KB
testcase_09 AC 61 ms
9,216 KB
testcase_10 AC 23 ms
6,144 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 33 ms
7,168 KB
testcase_13 AC 67 ms
9,600 KB
testcase_14 AC 14 ms
5,376 KB
testcase_15 AC 25 ms
6,784 KB
testcase_16 AC 38 ms
8,064 KB
testcase_17 AC 53 ms
8,960 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 11 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 40 ms
8,576 KB
testcase_24 AC 18 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, m, n) for(int i = (int)(m); i < (int)(n); ++i)
#define rep(i, n) REP(i, 0, n)
using namespace std;
using ll = long long;
using ld = long double;
template<class T, class U> inline bool chmax(T &a, const U &b) { if(a < b) { a = b; return true; } return false; }
template<class T, class U> inline bool chmin(T &a, const U &b) { if(a > b) { a = b; return true; } return false; }

int n, x, a[100000];

int main() {
  cin.tie(0); ios::sync_with_stdio(false);
  cin >> n >> x;
  rep(i, n) cin >> a[i];
  map<int, int> cnt;
  rep(i, n) {
    cnt[x-a[i]]++;
  }
  ll ans = 0;
  rep(i, n) {
    ans += cnt[a[i]];
  }
  cout << ans << '\n';
  return 0;
}
0