結果

問題 No.800 四平方定理
ユーザー ohreitetsuohreitetsu
提出日時 2019-04-25 22:06:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 885 bytes
コンパイル時間 745 ms
コンパイル使用メモリ 75,648 KB
実行使用メモリ 167,680 KB
最終ジャッジ日時 2024-11-21 14:39:42
合計ジャッジ時間 44,804 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
10,496 KB
testcase_01 AC 26 ms
74,624 KB
testcase_02 AC 19 ms
10,496 KB
testcase_03 AC 21 ms
73,472 KB
testcase_04 AC 19 ms
10,496 KB
testcase_05 AC 22 ms
72,448 KB
testcase_06 AC 32 ms
11,264 KB
testcase_07 AC 31 ms
71,680 KB
testcase_08 AC 41 ms
12,416 KB
testcase_09 AC 27 ms
68,096 KB
testcase_10 AC 1,536 ms
69,156 KB
testcase_11 AC 1,635 ms
167,680 KB
testcase_12 AC 1,786 ms
75,684 KB
testcase_13 AC 1,382 ms
56,448 KB
testcase_14 AC 1,487 ms
60,032 KB
testcase_15 AC 1,878 ms
69,120 KB
testcase_16 AC 1,503 ms
60,672 KB
testcase_17 AC 1,506 ms
60,672 KB
testcase_18 TLE -
testcase_19 AC 1,994 ms
76,160 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;
int main(int argc, char* argv[])
{
	int N,D;
	cin>>N>>D;
	map<int,int> xyMap;
	map<int,int> wzMap;
	map<int,int>::iterator mit;
	for (int x=1;x<=N;x++){
		for (int y=1;y<=N;y++){
			int xy=x*x+y*y;
			mit=xyMap.find(xy);
			if (mit==xyMap.end()){
				xyMap[xy]=1;
			}else{
				(*mit).second++;
			}
		}
	}
	mit=xyMap.begin();
	int MinV=(*mit).first;
	for (int w=1;w<=N;w++){
		for (int z=1;z<=N;z++){
			int wz=w*w-z*z+D;
			if (wz<MinV){
				continue;
			}
			mit=wzMap.find(wz);
			if (mit==wzMap.end()){
				wzMap[wz]=1;
			}else{
				(*mit).second++;
			}
		}
	}
	int ans=0;
	map<int,int>::iterator mit1;
	for (mit=xyMap.begin();mit!=xyMap.end();mit++){
		mit1=wzMap.find((*mit).first);
		if (mit1!=wzMap.end()){
			ans+=(*mit).second * (*mit1).second;
		}
	}
	xyMap.clear();
	wzMap.clear();
	cout<<ans<<endl;		
	return 0;
}
0