結果

問題 No.800 四平方定理
ユーザー aa
提出日時 2019-03-17 22:01:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 461 bytes
コンパイル時間 2,526 ms
コンパイル使用メモリ 174,424 KB
実行使用メモリ 106,112 KB
最終ジャッジ日時 2024-07-07 22:49:26
合計ジャッジ時間 22,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
10,624 KB
testcase_01 AC 19 ms
5,504 KB
testcase_02 AC 13 ms
5,376 KB
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 16 ms
5,376 KB
testcase_06 AC 24 ms
5,760 KB
testcase_07 AC 22 ms
6,272 KB
testcase_08 AC 29 ms
7,168 KB
testcase_09 AC 20 ms
5,376 KB
testcase_10 AC 1,393 ms
55,040 KB
testcase_11 AC 1,541 ms
60,544 KB
testcase_12 AC 1,555 ms
62,976 KB
testcase_13 AC 1,209 ms
48,512 KB
testcase_14 AC 1,406 ms
56,704 KB
testcase_15 AC 1,605 ms
61,952 KB
testcase_16 AC 1,323 ms
57,216 KB
testcase_17 AC 1,327 ms
54,400 KB
testcase_18 AC 1,913 ms
70,528 KB
testcase_19 AC 1,794 ms
71,680 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1,764 ms
67,328 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;

void solve()
{
	int N, D, ans = 0;
	cin >> N >> D;
	map<int, int> mp;
	for (int y = 1; y <= N; y++)
	{
		for (int z = 1; z <= N; z++)
		{
			mp[y*y+z*z]++;
		}
	}

	for (int x = 1; x <= N; x++)
	{
		for (int w = 1; w <= N; w++)
		{
			int p = D + w * w - x * x;
			if (p <= 0) continue;
			ans += mp[p];
		}
	}
	cout << ans << endl;
}

int main(void)
{
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0