結果

問題 No.723 2つの数の和
ユーザー とばりとばり
提出日時 2018-09-03 21:04:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 1,743 ms
コンパイル使用メモリ 178,272 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-10-09 09:53:47
合計ジャッジ時間 3,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 50 ms
6,912 KB
testcase_04 AC 68 ms
7,680 KB
testcase_05 AC 60 ms
7,424 KB
testcase_06 AC 65 ms
7,680 KB
testcase_07 AC 27 ms
6,820 KB
testcase_08 AC 31 ms
6,820 KB
testcase_09 AC 64 ms
7,808 KB
testcase_10 AC 28 ms
6,816 KB
testcase_11 AC 7 ms
6,820 KB
testcase_12 AC 38 ms
6,820 KB
testcase_13 AC 64 ms
7,936 KB
testcase_14 AC 16 ms
6,820 KB
testcase_15 AC 27 ms
6,816 KB
testcase_16 AC 39 ms
6,816 KB
testcase_17 AC 53 ms
7,424 KB
testcase_18 AC 17 ms
6,816 KB
testcase_19 AC 33 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 102 ms
10,240 KB
testcase_24 AC 20 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using int64 = long long;
using uint64 = unsigned long long;

int main()
{
    int N;
    int64 X;
    cin >> N >> X;

    map<int, int64> counter;
    vector<int64> a(N);
    for (int i = 0; i < N; i++)
    {
        cin >> a[i];
        counter[a[i]]++;
    }

    int64 ans = 0;
    for (auto mp : counter)
    {
        if (counter.count(X - mp.first) == 0) continue;
        ans += counter[mp.first] * counter[X - mp.first];
    }

    cout << ans << endl;

    return 0;
}
0