結果

問題 No.800 四平方定理
ユーザー ahe100ahe100
提出日時 2019-03-17 22:32:42
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 943 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 80,252 KB
実行使用メモリ 195,356 KB
最終ジャッジ日時 2024-07-08 00:34:31
合計ジャッジ時間 5,281 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
21,148 KB
testcase_01 AC 106 ms
23,168 KB
testcase_02 AC 65 ms
17,408 KB
testcase_03 AC 75 ms
19,328 KB
testcase_04 AC 64 ms
16,384 KB
testcase_05 AC 74 ms
18,560 KB
testcase_06 AC 126 ms
27,264 KB
testcase_07 AC 96 ms
20,608 KB
testcase_08 AC 139 ms
28,928 KB
testcase_09 AC 105 ms
24,192 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstring>
#include<vector>
#include<queue>
#include<stack>
#include<algorithm>
#include<cmath>
#include<climits>
#include<string>
#include<set>
#include<numeric>
#include<map>
#include<iostream>
using namespace std;
#define rep(i,n) for(int i = 0;i<((int)(n));i++)
#define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++)
#define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--)
#define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--)
typedef long long ll;
typedef pair<ll, ll> mp;
ll mod = 1e9+7;
//LLONG_MIN

/*

*/

ll n,d,ans=0;
map<ll,ll> p,m;

int main(void){
	cin>>n>>d;
	// reg(x,1,n){
	// 	reg(y,1,n){
	// 		reg(z,1,n){
	// 			reg(w,1,n){
	// 				if(x*x + y*y + z*z == w*w +d){
	// 					printf("%d,%d,%d,%d,\n",x,y,z,w);
	// 				}
	// 			}
	// 		}
	// 	}
	// }
	reg(x,1,n){
		reg(y,1,n){
			p[x*x + y*y]++;
			m[x*x - y*y]++;
		}
	}
	reg(i,2,2*n*n){
		ans+=p[i]*m[i-d];
	}
	cout<<ans<<endl;
	return 0;
}
0