結果

問題 No.723 2つの数の和
ユーザー memmemmimemmemmi
提出日時 2018-08-07 12:38:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 94,084 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 18:25:06
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 31 ms
5,376 KB
testcase_04 AC 42 ms
5,376 KB
testcase_05 AC 40 ms
5,376 KB
testcase_06 AC 40 ms
5,376 KB
testcase_07 AC 17 ms
5,376 KB
testcase_08 AC 21 ms
5,376 KB
testcase_09 AC 42 ms
5,376 KB
testcase_10 AC 18 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 24 ms
5,376 KB
testcase_13 AC 46 ms
5,376 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 AC 27 ms
5,376 KB
testcase_17 AC 36 ms
5,376 KB
testcase_18 AC 28 ms
5,376 KB
testcase_19 AC 42 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 39 ms
5,376 KB
testcase_24 AC 14 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cfloat>
#include <map>
#include <utility>
#include <set>
#include <iostream>
#include <memory>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <sstream>
#include <complex>
#include <stack>
#include <queue>
#include <iomanip>
using namespace std;
#define INF 1e9
#define PI acos(-1)
typedef long long ll;
typedef pair<int, int> p_ii;



int main() {
	int i, n, x;
	cin >> n >> x;
	vector<int>a(n+1);
	a[0] = -INF;
	for (i = 1; i < n+1; i++)cin >> a[i];
	sort(a.begin(), a.end());

	ll ans = 0;

	for (i = 1; i < n + 1; i++) {
		int left = 0, right = n + 1;
		while (right - left > 1) {
			int mid = (left + right) / 2;
			if (a[mid] + a[i] < x)left = mid;
			else right = mid;
		}

		int left2 = 0, right2 = n + 1;
		while (right2 - left2 > 1) {
			int mid = (left2 + right2) / 2;
			if (a[mid] + a[i] <= x)left2 = mid;
			else right2 = mid;
		}

		ans += (ll)left2 - left;
	}

	cout << ans << endl;
	
	return 0;
}
0