結果

問題 No.723 2つの数の和
ユーザー ohreitetsuohreitetsu
提出日時 2018-08-21 21:52:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 589 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 72,832 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-05-09 23:57:07
合計ジャッジ時間 5,684 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 45 ms
6,656 KB
testcase_04 AC 63 ms
7,808 KB
testcase_05 AC 60 ms
7,424 KB
testcase_06 AC 62 ms
7,680 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 27 ms
5,632 KB
testcase_09 AC 65 ms
7,808 KB
testcase_10 AC 23 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 31 ms
5,888 KB
testcase_13 AC 63 ms
7,936 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 22 ms
5,376 KB
testcase_16 AC 35 ms
6,400 KB
testcase_17 AC 48 ms
7,168 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;
typedef long long LL;
int main(int argc, char* argv[])
{
	int N,X,A;
	cin>>N>>X;
	int i;
	multimap<int,int> myMap; 
	multimap<int,int>::iterator mit;
	for (i=0;i<N;i++){
		cin>>A;
		myMap.insert(multimap<int,int>::value_type(A,1));
	}
	int num=0;
	while (!myMap.empty()){
		mit=myMap.begin();
		int val=X-(*mit).first;
		if (2*val==X){
			num++;
		}
		myMap.erase(mit);
		mit=myMap.find(val);
		while (mit!=myMap.end()){
			if (val==(*mit).first){
				num+=2;
			}else{
				break;
			}
			mit++;
		}
	}
	cout<<num<<endl;
	return 0;
}
0