結果

問題 No.800 四平方定理
ユーザー furafura
提出日時 2020-05-13 06:52:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 201,928 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-09-14 14:04:41
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 23 ms
18,812 KB
testcase_11 AC 26 ms
20,736 KB
testcase_12 AC 25 ms
20,464 KB
testcase_13 AC 22 ms
19,572 KB
testcase_14 AC 27 ms
20,732 KB
testcase_15 AC 26 ms
20,608 KB
testcase_16 AC 26 ms
20,864 KB
testcase_17 AC 25 ms
20,864 KB
testcase_18 AC 27 ms
20,792 KB
testcase_19 AC 26 ms
20,908 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 27 ms
20,864 KB
testcase_23 AC 67 ms
34,560 KB
testcase_24 AC 62 ms
34,560 KB
testcase_25 AC 67 ms
34,468 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 63 ms
34,396 KB
testcase_29 AC 65 ms
34,480 KB
testcase_30 AC 66 ms
34,432 KB
testcase_31 AC 55 ms
32,256 KB
testcase_32 AC 61 ms
34,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n,d; scanf("%d%d",&n,&d);

	vector<int> cnt(2*n*n+1);
	for(int x=1;x<=n;x++) for(int y=1;y<=n;y++) cnt[x*x+y*y]++;

	int ans=0;
	for(int z=1;z<=n;z++) for(int w=1;w<=n;w++) {
		int tar=w*w+d-z*z;
		if(0<=tar && tar<=2*n*n) ans+=cnt[tar];
	}
	printf("%d\n",ans);

	return 0;
}
0