結果

問題 No.723 2つの数の和
ユーザー ohreitetsuohreitetsu
提出日時 2018-08-21 22:04:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 73,792 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-05-10 00:10:16
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 47 ms
6,940 KB
testcase_04 AC 67 ms
7,808 KB
testcase_05 AC 60 ms
7,424 KB
testcase_06 AC 64 ms
7,680 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 29 ms
6,944 KB
testcase_09 AC 69 ms
7,936 KB
testcase_10 AC 25 ms
6,940 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 33 ms
6,944 KB
testcase_13 AC 69 ms
8,064 KB
testcase_14 AC 14 ms
6,940 KB
testcase_15 AC 26 ms
6,944 KB
testcase_16 AC 40 ms
6,940 KB
testcase_17 AC 55 ms
7,168 KB
testcase_18 AC 42 ms
8,192 KB
testcase_19 AC 58 ms
8,192 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 63 ms
8,320 KB
testcase_24 AC 18 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main(int, char**)':
main.cpp:13:18: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+10' to '2147483647' [-Woverflow]
   13 |         int MinV=1e10;
      |                  ^~~~

ソースコード

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;
	int MaxV=-1;
	int MinV=1e10;
	for (i=0;i<N;i++){
		cin>>A;
		if (MaxV<A){
			MaxV=A;
		}
		if (MinV>A){
			MinV=A;
		}
		myMap.insert(multimap<int,int>::value_type(A,1));
	}
	if (MaxV==MinV && 2*MaxV==X){
		LL V=(LL)N*(LL)N;
		cout<<V<<endl;
		return 0;
	}
	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