結果

問題 No.800 四平方定理
ユーザー wacchozwacchoz
提出日時 2019-03-17 21:31:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 1,362 ms
コンパイル使用メモリ 164,544 KB
実行使用メモリ 84,620 KB
最終ジャッジ日時 2024-07-07 20:47:08
合計ジャッジ時間 14,203 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 15 ms
6,940 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 17 ms
6,944 KB
testcase_07 AC 13 ms
6,944 KB
testcase_08 AC 15 ms
6,940 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 401 ms
44,000 KB
testcase_11 AC 457 ms
70,712 KB
testcase_12 AC 454 ms
71,168 KB
testcase_13 AC 412 ms
45,156 KB
testcase_14 AC 456 ms
70,728 KB
testcase_15 AC 460 ms
72,268 KB
testcase_16 AC 457 ms
71,096 KB
testcase_17 AC 456 ms
72,588 KB
testcase_18 AC 490 ms
71,224 KB
testcase_19 AC 470 ms
72,148 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 474 ms
71,048 KB
testcase_23 AC 832 ms
84,620 KB
testcase_24 AC 807 ms
84,188 KB
testcase_25 AC 828 ms
83,900 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 802 ms
83,700 KB
testcase_29 AC 818 ms
83,816 KB
testcase_30 AC 823 ms
83,756 KB
testcase_31 AC 752 ms
83,016 KB
testcase_32 AC 820 ms
83,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

#define int long long
#define ll long long
typedef pair<int, int> P;
#define mod 1000000007
#define INF (1LL<<60)

#define rep(i,n) for(int i=0, i##_len=(n); i<i##_len; ++i)
#define YES cout << "YES" << endl;
#define Yes cout << "Yes" << endl;
#define NO cout << "NO" << endl;
#define No cout << "No" << endl;


signed main(){

	int N, D;
	cin >> N >> D;

	vector<int> add, sub;

	for (int x = 1; x <= N; x++){
		for (int y = 1; y <= N; y++){
			add.push_back(x*x + y*y);
		}
	}
	for (int w = 1; w <= N; w++){
		for (int z = 1; z <= N; z++){
			sub.push_back(w*w -z*z + D);
		}
	}
	sort(add.begin(), add.end());
	sort(sub.begin(), sub.end());

	int ans = 0;
	for (int l : add){
		ans += upper_bound(sub.begin(), sub.end(), l)
			- lower_bound(sub.begin(), sub.end(), l);
	}

	cout << ans << endl;

	return 0;
}
0