結果

問題 No.800 四平方定理
ユーザー ats5515ats5515
提出日時 2019-03-17 23:13:20
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 640 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 86,424 KB
実行使用メモリ 22,592 KB
最終ジャッジ日時 2024-07-08 02:08:34
合計ジャッジ時間 3,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 12 ms
13,040 KB
testcase_11 AC 12 ms
14,512 KB
testcase_12 AC 11 ms
15,332 KB
testcase_13 AC 10 ms
12,424 KB
testcase_14 AC 11 ms
13,892 KB
testcase_15 AC 12 ms
14,708 KB
testcase_16 AC 11 ms
13,412 KB
testcase_17 AC 10 ms
12,192 KB
testcase_18 AC 14 ms
17,064 KB
testcase_19 AC 15 ms
17,048 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 15 ms
17,116 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <queue>
#include <string>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <stdio.h>
using namespace std;
int MOD = 1000000007;
int mp[5001000];
signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N, D;
	cin >> N >> D;
	for (int i = 1; i <= N; i++) {
		for (int j = 1; j <= N; j++) {
			int t = i * i - j * j + D;
			if (t < 0)break;
			mp[t]++;
		}
	}
	long long res = 0;
	for (int i = 1; i <= N; i++) {
		for (int j = 1; j <= N; j++) {
			res += (long long)mp[i * i + j * j];
		}
	}

	cout << res << endl;
}
0