結果

問題 No.723 2つの数の和
ユーザー phsplsphspls
提出日時 2020-04-19 15:32:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 1,473 ms
コンパイル使用メモリ 181,452 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-10-05 12:14:59
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 64 ms
8,064 KB
testcase_04 AC 84 ms
9,216 KB
testcase_05 AC 74 ms
8,832 KB
testcase_06 AC 79 ms
8,960 KB
testcase_07 AC 33 ms
6,528 KB
testcase_08 AC 40 ms
6,784 KB
testcase_09 AC 88 ms
9,216 KB
testcase_10 AC 38 ms
6,400 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 44 ms
7,296 KB
testcase_13 AC 87 ms
9,344 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 36 ms
6,656 KB
testcase_16 AC 53 ms
7,808 KB
testcase_17 AC 72 ms
8,832 KB
testcase_18 AC 15 ms
5,248 KB
testcase_19 AC 29 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 124 ms
12,800 KB
testcase_24 AC 25 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define llong long long

int main() {
    int n, x;
    cin >> n >> x;
    map<int, int> a;
    set<int> keys;
    rep(i, n) {
        int val;
        cin >> val;
        if(a.count(val)) a[val]++;
        else a[val] = 1;
        keys.insert(val);
    }

    llong result = 0LL;
    for(pair<int, int> p: a) {
        if(p.first > x) break;
        if(a.count(x - p.first)) {
            result += (llong)a[p.first] * a[x - p.first];
        }
    }

    cout << result << "\n";
}
0