結果

問題 No.723 2つの数の和
ユーザー nuto321nuto321
提出日時 2018-08-25 14:10:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 463 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 66,360 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-26 00:03:04
合計ジャッジ時間 3,048 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 24 ms
6,940 KB
testcase_04 AC 31 ms
6,940 KB
testcase_05 AC 27 ms
6,940 KB
testcase_06 AC 28 ms
6,940 KB
testcase_07 AC 15 ms
6,940 KB
testcase_08 AC 16 ms
6,944 KB
testcase_09 AC 31 ms
6,940 KB
testcase_10 AC 14 ms
6,940 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 18 ms
6,940 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 17 ms
6,940 KB
testcase_19 AC 35 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 31 ms
6,940 KB
testcase_24 AC 11 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include <stdio.h>
#include <string.h>
#include <string>
#include <algorithm>

using namespace std;
int main()
{
	long long N, X;
	long long a[100001];
	long long b[200001] = {};
	long long Ans = 0;

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

	for (int j = 0; j < N; j++) {
		b[a[j]]++;
	}

	for (int k = 0; k < 200001; k++) {
		if (X - k >= 0) {
			Ans = Ans + (b[k] * b[X - k]);
		}
		
	}

	cout << Ans;


	return 0;
}
0