結果

問題 No.800 四平方定理
ユーザー Jiro_tech15Jiro_tech15
提出日時 2019-03-22 18:48:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 1,071 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 90,164 KB
実行使用メモリ 65,876 KB
最終ジャッジ日時 2024-09-19 02:31:30
合計ジャッジ時間 10,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 11 ms
5,376 KB
testcase_02 AC 8 ms
5,376 KB
testcase_03 AC 9 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 293 ms
34,260 KB
testcase_11 AC 351 ms
52,440 KB
testcase_12 AC 337 ms
52,568 KB
testcase_13 AC 285 ms
35,672 KB
testcase_14 AC 334 ms
52,564 KB
testcase_15 AC 333 ms
52,560 KB
testcase_16 AC 337 ms
52,564 KB
testcase_17 AC 335 ms
52,564 KB
testcase_18 AC 359 ms
52,436 KB
testcase_19 AC 357 ms
52,564 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 355 ms
52,436 KB
testcase_23 AC 616 ms
65,752 KB
testcase_24 AC 634 ms
65,876 KB
testcase_25 AC 621 ms
65,496 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 622 ms
65,364 KB
testcase_29 AC 618 ms
65,744 KB
testcase_30 AC 610 ms
65,492 KB
testcase_31 AC 565 ms
61,140 KB
testcase_32 AC 619 ms
65,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <string>
#include <math.h>
#include <iomanip>
#include <limits>
#include <list>
#include <queue>
#include <tuple>
#include <map>
using namespace std;
#define MOD (long long int)(1e9+7)
#define ll long long int
#define rep(i,n) for(int i=0; i<(int)(n); i++)
#define reps(i,n) for(int i=1; i<=(int)(n); i++)
#define REP(i,n) for(int i=n-1; i>=0; i--)
#define REPS(i,n) for(int i=n; i>0; i--)
#define INF (int)(1123456789)
#define LINF (long long int)(112345678901234567)


int main(void){
	ll n,d;
	cin>>n>>d;
	vector<ll> xy,zw;
	reps(i,n){
		reps(j,n){
			xy.push_back(i*i+j*j);
			zw.push_back(i*i-j*j+d);
		}
	}
	sort(xy.begin(),xy.end());
	sort(zw.begin(),zw.end());
	int xi=0,zi=0;
	ll ans = 0;
	while(xi < n*n && zi < n*n){
		ll memo = 0;
		for(;zi < n*n && zw[zi] <= xy[xi];zi++){
			if(zw[zi] == xy[xi]){
				memo++;
			}
		}
		ll memo2 = 1;
		for(;xi+1 < n*n && xy[xi] == xy[xi+1];){
			xi++;
			memo2++;
		}
		ans += memo * memo2;
		xi++;
	}
	cout<<ans<<endl;

	
	return 0;
}
0