結果

問題 No.800 四平方定理
ユーザー ark27ark27
提出日時 2019-07-26 11:40:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 1,504 ms
コンパイル使用メモリ 166,808 KB
実行使用メモリ 128,524 KB
最終ジャッジ日時 2024-07-02 06:24:52
合計ジャッジ時間 6,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
128,408 KB
testcase_01 AC 88 ms
128,404 KB
testcase_02 AC 88 ms
128,416 KB
testcase_03 AC 87 ms
128,284 KB
testcase_04 AC 87 ms
128,476 KB
testcase_05 AC 87 ms
128,492 KB
testcase_06 AC 88 ms
128,396 KB
testcase_07 AC 88 ms
128,512 KB
testcase_08 AC 88 ms
128,316 KB
testcase_09 AC 89 ms
128,524 KB
testcase_10 AC 128 ms
128,376 KB
testcase_11 AC 128 ms
128,296 KB
testcase_12 AC 133 ms
128,428 KB
testcase_13 AC 121 ms
128,476 KB
testcase_14 AC 126 ms
128,400 KB
testcase_15 AC 132 ms
128,440 KB
testcase_16 AC 124 ms
128,324 KB
testcase_17 AC 126 ms
128,464 KB
testcase_18 AC 138 ms
128,460 KB
testcase_19 AC 136 ms
128,292 KB
testcase_20 AC 86 ms
128,384 KB
testcase_21 AC 89 ms
128,336 KB
testcase_22 AC 139 ms
128,292 KB
testcase_23 AC 183 ms
128,400 KB
testcase_24 AC 167 ms
128,368 KB
testcase_25 AC 184 ms
128,328 KB
testcase_26 AC 88 ms
128,340 KB
testcase_27 AC 87 ms
128,320 KB
testcase_28 AC 166 ms
128,364 KB
testcase_29 AC 175 ms
128,420 KB
testcase_30 AC 164 ms
128,516 KB
testcase_31 AC 157 ms
128,520 KB
testcase_32 AC 173 ms
128,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define FOR(i,n) for(int i=0;i<(n);i++)
#define MOD 1000000007
#define all(x) (x).begin(),(x).end()
template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}
template<class T> inline T GCD(T a,T b){T c;while(b!=0){c=a%b;a=b;b=c;}return a;}
template<class T> inline T LCM(T a,T b){return a/GCD(a,b)*b;}

int main(){
	ll n,d;
	cin >> n >> d;
	ll c1[8000010],c2[8000010];
	FOR(i,8000005){
		c1[i]=0;
		c2[i]=0;
	}
	for(int i=1;i<=n;i++){
		for(int j=1;j<=n;j++){
			c1[i*i+j*j]++;
			if(i*i-j*j+d<0)continue;
			c2[i*i-j*j+d]++;
		}
	}
	ll ans=0;
	for(int i=1;i<=8000005;i++){
		ans+=c1[i]*c2[i];
	}
	cout << ans << endl;
}
0