結果

問題 No.800 四平方定理
ユーザー sprng_wlsprng_wl
提出日時 2019-03-18 22:25:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 1,334 ms
コンパイル使用メモリ 158,844 KB
実行使用メモリ 53,504 KB
最終ジャッジ日時 2024-07-19 06:48:47
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 9 ms
5,376 KB
testcase_02 AC 9 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 37 ms
28,160 KB
testcase_11 AC 41 ms
30,208 KB
testcase_12 AC 41 ms
30,848 KB
testcase_13 AC 36 ms
27,392 KB
testcase_14 AC 41 ms
29,184 KB
testcase_15 AC 44 ms
30,976 KB
testcase_16 AC 36 ms
29,440 KB
testcase_17 AC 41 ms
29,440 KB
testcase_18 AC 43 ms
33,152 KB
testcase_19 AC 46 ms
33,408 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 7 ms
5,376 KB
testcase_22 AC 45 ms
33,152 KB
testcase_23 AC 101 ms
53,504 KB
testcase_24 AC 89 ms
49,664 KB
testcase_25 AC 97 ms
53,376 KB
testcase_26 AC 7 ms
5,376 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 90 ms
49,408 KB
testcase_29 AC 98 ms
51,456 KB
testcase_30 AC 87 ms
49,408 KB
testcase_31 AC 84 ms
46,208 KB
testcase_32 AC 95 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

const int sz = 2 * 2000 * 2000;
int a[sz + 1] = { 0 };
int b[sz + 1] = { 0 };

int main() {
	int N, D;
	cin >> N >> D;

	for (int x = 1; x <= N; ++x) {
		for (int y = 1; y <= N; ++y) {
			++a[x*x + y*y];
		}
	}
	for (int z = 1; z <= N; ++z) {
		for (int w = 1; w <= N; ++w) {
			int t = w*w + D - z*z;
			if ((t > 0) && (t <= sz)) { ++b[t]; }
		}
	}

	int res = 0;
	for (int i = 0; i <= sz; ++i) { res += (a[i] * b[i]); }
	cout << res << endl;

	return 0;
}
0