結果

問題 No.800 四平方定理
ユーザー snrnsidysnrnsidy
提出日時 2021-02-21 22:17:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 529 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 204,696 KB
実行使用メモリ 150,456 KB
最終ジャッジ日時 2024-09-19 19:13:25
合計ジャッジ時間 22,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
13,756 KB
testcase_01 AC 16 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 17 ms
6,940 KB
testcase_07 AC 21 ms
7,172 KB
testcase_08 AC 30 ms
8,656 KB
testcase_09 AC 14 ms
6,940 KB
testcase_10 AC 1,287 ms
75,668 KB
testcase_11 AC 1,458 ms
78,788 KB
testcase_12 AC 1,596 ms
89,184 KB
testcase_13 AC 1,093 ms
66,564 KB
testcase_14 AC 1,281 ms
73,100 KB
testcase_15 AC 1,656 ms
88,348 KB
testcase_16 AC 1,318 ms
73,544 KB
testcase_17 AC 1,288 ms
71,752 KB
testcase_18 AC 1,827 ms
98,564 KB
testcase_19 AC 1,907 ms
122,060 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1,800 ms
96,472 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

// x^2 + y^2과 w^2 - z^2를 구한다.
unordered_map <int,int> cnt1,cnt2;

int main(void) 
{
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int n,D;
	int res = 0;
	cin >> n >> D;
	
	for(int a=1;a<=n;a++)
	{
		for(int b=1;b<=n;b++)
		{
			cnt1[a*a + b*b]++;
			if(b*b - a*a + D>=0)
			{
				cnt2[b*b - a*a]++;
			}
		}
	}
	
	for(auto it : cnt2)
	{
		long long int way = it.second;
		long long int val = it.first + D;
		res += (cnt1[val]*way);
	}
	
	cout << res << '\n';
	return 0;
}
0