結果

問題 No.723 2つの数の和
ユーザー ajiruajiruajiruajiru
提出日時 2020-02-09 08:07:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 1,606 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2024-04-08 11:59:32
合計ジャッジ時間 2,252 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 32 ms
6,548 KB
testcase_04 AC 44 ms
6,548 KB
testcase_05 AC 38 ms
6,548 KB
testcase_06 AC 41 ms
6,548 KB
testcase_07 AC 18 ms
6,548 KB
testcase_08 AC 20 ms
6,548 KB
testcase_09 AC 44 ms
6,548 KB
testcase_10 AC 18 ms
6,548 KB
testcase_11 AC 6 ms
6,548 KB
testcase_12 AC 23 ms
6,548 KB
testcase_13 AC 43 ms
6,548 KB
testcase_14 AC 11 ms
6,548 KB
testcase_15 AC 18 ms
6,548 KB
testcase_16 AC 27 ms
6,548 KB
testcase_17 AC 35 ms
6,548 KB
testcase_18 AC 21 ms
6,548 KB
testcase_19 AC 38 ms
6,548 KB
testcase_20 AC 2 ms
6,548 KB
testcase_21 AC 2 ms
6,548 KB
testcase_22 AC 2 ms
6,548 KB
testcase_23 AC 45 ms
6,548 KB
testcase_24 AC 14 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main(void) {
	int n, x;
	cin >> n >> x;
	vector<int> A(n);
	for (int i = 0; i < n; ++i) cin >> A[i];
	sort(A.begin(), A.end());

	long long ans = 0;
	for (int i = 0; i < n; ++i) {
		int key = x - A[i];
		auto itr1 = lower_bound(A.begin(), A.end(), key);
		auto itr2 = upper_bound(A.begin(), A.end(), key);
		ans += itr2 - itr1;
	}
	cout << ans << endl;
	return 0;
}
0