結果

問題 No.800 四平方定理
ユーザー ats5515ats5515
提出日時 2019-03-17 23:14:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 86,692 KB
実行使用メモリ 23,220 KB
最終ジャッジ日時 2024-07-08 02:16:53
合計ジャッジ時間 2,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 13 ms
13,916 KB
testcase_11 AC 13 ms
13,812 KB
testcase_12 AC 13 ms
14,588 KB
testcase_13 AC 11 ms
12,544 KB
testcase_14 AC 11 ms
12,584 KB
testcase_15 AC 12 ms
14,876 KB
testcase_16 AC 13 ms
12,572 KB
testcase_17 AC 12 ms
12,420 KB
testcase_18 AC 16 ms
16,380 KB
testcase_19 AC 13 ms
17,488 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 16 ms
16,608 KB
testcase_23 AC 29 ms
22,880 KB
testcase_24 AC 26 ms
19,660 KB
testcase_25 AC 32 ms
23,220 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 23 ms
19,220 KB
testcase_29 AC 23 ms
22,068 KB
testcase_30 AC 23 ms
19,056 KB
testcase_31 AC 21 ms
19,124 KB
testcase_32 AC 23 ms
20,264 KB
権限があれば一括ダウンロードができます

ソースコード

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[8001000];
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