結果

問題 No.800 四平方定理
ユーザー ahe100ahe100
提出日時 2019-03-17 22:38:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 72,212 KB
実行使用メモリ 126,848 KB
最終ジャッジ日時 2024-07-08 00:47:48
合計ジャッジ時間 4,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
6,272 KB
testcase_07 AC 4 ms
5,504 KB
testcase_08 AC 5 ms
6,144 KB
testcase_09 AC 4 ms
5,888 KB
testcase_10 AC 106 ms
64,256 KB
testcase_11 AC 113 ms
72,192 KB
testcase_12 AC 112 ms
70,912 KB
testcase_13 AC 106 ms
67,328 KB
testcase_14 AC 116 ms
72,192 KB
testcase_15 AC 113 ms
71,680 KB
testcase_16 AC 114 ms
72,832 KB
testcase_17 AC 113 ms
72,704 KB
testcase_18 AC 113 ms
72,448 KB
testcase_19 AC 120 ms
72,448 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 116 ms
72,832 KB
testcase_23 AC 218 ms
126,848 KB
testcase_24 AC 219 ms
126,848 KB
testcase_25 AC 222 ms
126,464 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 217 ms
126,208 KB
testcase_29 AC 218 ms
126,720 KB
testcase_30 AC 217 ms
126,336 KB
testcase_31 AC 203 ms
117,632 KB
testcase_32 AC 218 ms
126,848 KB
権限があれば一括ダウンロードができます

ソースコード

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,p[8000010],m[8000010];
// 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+4000000]++;
		}
	}
	reg(i,2,2*n*n){
		if(i-d+4000000<=8000000)ans+=p[i]*m[i-d+4000000];
	}
	cout<<ans<<endl;
	return 0;
}
0