結果

問題 No.800 四平方定理
ユーザー horiesinitihoriesiniti
提出日時 2023-02-05 05:19:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 55,216 KB
実行使用メモリ 159,684 KB
最終ジャッジ日時 2024-07-03 22:35:00
合計ジャッジ時間 6,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
159,556 KB
testcase_01 AC 111 ms
159,556 KB
testcase_02 AC 111 ms
159,552 KB
testcase_03 AC 111 ms
159,552 KB
testcase_04 AC 110 ms
159,556 KB
testcase_05 AC 110 ms
159,424 KB
testcase_06 AC 110 ms
159,560 KB
testcase_07 AC 113 ms
159,644 KB
testcase_08 AC 114 ms
159,428 KB
testcase_09 AC 111 ms
159,556 KB
testcase_10 AC 140 ms
159,556 KB
testcase_11 AC 139 ms
159,432 KB
testcase_12 AC 142 ms
159,556 KB
testcase_13 AC 138 ms
159,684 KB
testcase_14 AC 140 ms
159,684 KB
testcase_15 AC 146 ms
159,428 KB
testcase_16 AC 142 ms
159,428 KB
testcase_17 AC 142 ms
159,648 KB
testcase_18 AC 151 ms
159,432 KB
testcase_19 AC 152 ms
159,560 KB
testcase_20 AC 112 ms
159,428 KB
testcase_21 AC 113 ms
159,424 KB
testcase_22 AC 153 ms
159,552 KB
testcase_23 AC 184 ms
159,552 KB
testcase_24 AC 170 ms
159,644 KB
testcase_25 AC 183 ms
159,560 KB
testcase_26 AC 112 ms
159,428 KB
testcase_27 AC 111 ms
159,644 KB
testcase_28 AC 171 ms
159,560 KB
testcase_29 AC 177 ms
159,556 KB
testcase_30 AC 170 ms
159,560 KB
testcase_31 AC 170 ms
159,684 KB
testcase_32 AC 171 ms
159,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string.h>
using namespace std;
long long int cs[10000001],cs2[10000001];
int main() {
	memset(cs,0,sizeof(cs));
	memset(cs2,0,sizeof(cs2));
	int n,d;
	cin>>n>>d;
	for(int x=1;x<=n;x++){
		for(int y=x;y<=n;y++){
			int t=x*x+y*y;
			cs[t]+=(x==y)?1:2;
			t=d+(x-y)*(x+y);
			if(0<t)cs2[t]++;
			if(x==y)continue;
			t=d+(y-x)*(x+y);
			if(t>0)cs2[t]++;
		}
	}
	long long int ans=0;
	for(int i=1;i<=10000000;i++){
		ans+=cs[i]*cs2[i];
	}
	cout<<ans<<endl;
	return 0;
}
0