結果

問題 No.800 四平方定理
ユーザー snrnsidysnrnsidy
提出日時 2021-02-21 22:20:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 200,348 KB
実行使用メモリ 34,156 KB
最終ジャッジ日時 2024-09-19 19:14:37
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 23 ms
18,688 KB
testcase_11 AC 27 ms
20,480 KB
testcase_12 AC 26 ms
20,096 KB
testcase_13 AC 23 ms
19,328 KB
testcase_14 AC 25 ms
20,608 KB
testcase_15 AC 27 ms
20,480 KB
testcase_16 AC 26 ms
20,736 KB
testcase_17 AC 24 ms
20,608 KB
testcase_18 AC 27 ms
20,608 KB
testcase_19 AC 27 ms
20,736 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 24 ms
20,736 KB
testcase_23 AC 68 ms
34,048 KB
testcase_24 AC 57 ms
34,048 KB
testcase_25 AC 65 ms
33,920 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 55 ms
33,972 KB
testcase_29 AC 60 ms
33,920 KB
testcase_30 AC 57 ms
33,860 KB
testcase_31 AC 58 ms
31,744 KB
testcase_32 AC 63 ms
34,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

// x^2 + y^2과 w^2 - z^2를 구한다.
int cnt[8000001];

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++)
		{
			cnt[a*a + b*b]++;
		}
	}
	
	for(int a=1;a<=n;a++)
	{
		for(int b=1;b<=n;b++)
		{
			int val = b*b - a*a + D;
			if(val>=0)
			{
				res += cnt[val];
			}
		}
	}
	
	cout << res << '\n';
	return 0;
}
0