結果

問題 No.800 四平方定理
ユーザー ahe100ahe100
提出日時 2019-03-17 22:35:36
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 984 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 72,256 KB
実行使用メモリ 127,104 KB
最終ジャッジ日時 2024-07-08 00:43:52
合計ジャッジ時間 4,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
6,144 KB
testcase_07 AC 2 ms
5,504 KB
testcase_08 AC 3 ms
6,144 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 75 ms
64,384 KB
testcase_11 WA -
testcase_12 AC 104 ms
70,912 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 109 ms
71,424 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 110 ms
72,448 KB
testcase_19 AC 109 ms
72,576 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 111 ms
72,960 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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