結果

問題 No.723 2つの数の和
ユーザー uw_yu1rabbit
提出日時 2020-08-21 20:11:11
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 3,953 ms
コンパイル使用メモリ 114,284 KB
最終ジャッジ日時 2025-01-13 04:51:04
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include<iostream>
#include<map>
#include<vector>

using namespace std;
using i32 = int_fast32_t;
using i64 = int_fast64_t;
#define rep(i, n) for (i32 i = 0; i < (i32)(n); i++)
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
using P = pair<i64, i64>;

int main() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    i32 n, x;
    cin >> n >> x;
    vector<i32> a(n);
    map<i32, i32> mp;
    rep(i, n) {
        cin >> a[i];
        mp[a[i]]++;
    }
    i32 ans = 0;
    rep(i, n) {
        ans += mp[x - a[i]];
    }
    cout << ans << endl;
}
0