結果

問題 No.800 四平方定理
ユーザー startcppstartcpp
提出日時 2019-03-17 22:38:22
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 54,228 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-07-08 00:47:54
合計ジャッジ時間 2,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 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 2 ms
5,376 KB
testcase_10 AC 44 ms
52,608 KB
testcase_11 AC 52 ms
56,576 KB
testcase_12 AC 53 ms
58,112 KB
testcase_13 AC 47 ms
51,200 KB
testcase_14 AC 48 ms
54,784 KB
testcase_15 AC 54 ms
58,368 KB
testcase_16 AC 50 ms
55,296 KB
testcase_17 AC 50 ms
55,296 KB
testcase_18 AC 63 ms
62,848 KB
testcase_19 AC 63 ms
62,848 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 65 ms
62,976 KB
testcase_23 AC 138 ms
103,424 KB
testcase_24 AC 118 ms
95,744 KB
testcase_25 AC 135 ms
103,168 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 117 ms
95,232 KB
testcase_29 AC 126 ms
99,328 KB
testcase_30 AC 118 ms
95,104 KB
testcase_31 AC 106 ms
88,960 KB
testcase_32 AC 121 ms
96,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define int long long
using namespace std;

int cnt1[8000001];	//x^2 + y^2
int cnt2[8000001];	//z^2 - w^2 + D
int n, d;

signed main() {
	int i, j;
	
	cin >> n >> d;
	
	for (i = 1; i <= n; i++)
		for (j = 1; j <= n; j++)
			cnt1[i * i + j * j]++;
	
	for (i = 1; i <= n; i++) {
		for (j = 1; j <= n; j++) {
			int x = i * i - j * j + d;
			if (0 <= x && x <= 2 * n * n) {
				cnt2[x]++;
			}
		}
	}
	
	int ans = 0;
	for (i = 0; i <= 2 * n * n; i++)
		ans += cnt1[i] * cnt2[i];
	cout << ans << endl;
	return 0;
}
0