結果

問題 No.723 2つの数の和
ユーザー とばりとばり
提出日時 2018-08-03 22:43:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 72,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-19 17:32:28
合計ジャッジ時間 2,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 62 ms
9,088 KB
testcase_04 AC 80 ms
9,600 KB
testcase_05 AC 78 ms
10,064 KB
testcase_06 AC 76 ms
9,600 KB
testcase_07 AC 34 ms
7,296 KB
testcase_08 AC 37 ms
7,508 KB
testcase_09 AC 85 ms
10,500 KB
testcase_10 AC 32 ms
6,940 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 45 ms
8,140 KB
testcase_13 AC 85 ms
11,264 KB
testcase_14 AC 19 ms
6,016 KB
testcase_15 AC 35 ms
7,680 KB
testcase_16 AC 53 ms
9,216 KB
testcase_17 AC 73 ms
10,380 KB
testcase_18 AC 17 ms
5,376 KB
testcase_19 AC 31 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 67 ms
9,856 KB
testcase_24 AC 24 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <vector>
using namespace std;

using int64 = long long;

map<int, int64> counter;

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

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

    int64 ans = 0;
    for (int i = 0; i < N; i++) {
        ans += counter[X - a[i]];
    }
    cout << ans << endl;
    
    return 0;
}
0