結果

問題 No.723 2つの数の和
ユーザー firiexpfiriexp
提出日時 2018-08-03 22:51:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 390 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 73,432 KB
実行使用メモリ 14,880 KB
最終ジャッジ日時 2024-09-19 17:34:43
合計ジャッジ時間 4,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 40 ms
6,784 KB
testcase_04 AC 51 ms
7,680 KB
testcase_05 AC 43 ms
7,424 KB
testcase_06 AC 48 ms
7,552 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 21 ms
5,504 KB
testcase_09 AC 53 ms
7,936 KB
testcase_10 AC 18 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 24 ms
5,760 KB
testcase_13 AC 52 ms
8,064 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 18 ms
5,376 KB
testcase_16 AC 28 ms
6,272 KB
testcase_17 AC 40 ms
7,168 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <set>

using ll = long long;
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    int n, x, a, ans = 0;
    cin >> n >> x;
    multiset<int> v;
    for (int i = 0; i < n; ++i) {
        cin >> a;
        v.insert(a);
    }
    for (auto &k : v) {
        ans+=v.count(x-k);
    }
    cout << ans << "\n";
    return 0;
}
0