結果

問題 No.800 四平方定理
ユーザー okok
提出日時 2019-03-17 22:35:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 642 ms
コンパイル使用メモリ 71,468 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-07-08 00:42:38
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 57 ms
34,304 KB
testcase_11 AC 61 ms
38,144 KB
testcase_12 AC 62 ms
37,504 KB
testcase_13 AC 59 ms
35,712 KB
testcase_14 AC 60 ms
38,144 KB
testcase_15 AC 62 ms
37,888 KB
testcase_16 AC 65 ms
38,656 KB
testcase_17 AC 68 ms
38,528 KB
testcase_18 AC 66 ms
38,400 KB
testcase_19 AC 65 ms
38,400 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 69 ms
38,528 KB
testcase_23 AC 141 ms
65,920 KB
testcase_24 AC 136 ms
65,920 KB
testcase_25 AC 142 ms
65,792 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 133 ms
65,536 KB
testcase_29 AC 133 ms
65,792 KB
testcase_30 AC 134 ms
65,664 KB
testcase_31 AC 122 ms
61,312 KB
testcase_32 AC 142 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>

using namespace std;

#define int long long
#define rep(i,n) for(int i = 0; i < (n); i++)
#define INF ((long long)1e18)
#define MOD ((int)1e9+7)
#define endl "\n"

#define yn(f) ((f)?"Yes":"No")
#define YN(f) ((f)?"YES":"NO")

#define MAX 4100000

int temp[MAX*2];

signed main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	cout<<fixed<<setprecision(10);
	
	int N, D, count = 0;
	
	cin>>N>>D;
	
	
	for(int i = 1; i <= N; i++){
		for(int j = 1; j <= N; j++){
			// cout<<j*j-i*i<<" ++ "<<endl;
			temp[j*j-i*i+MAX]++;
		}
	}
	
	
	for(int i = 1; i <= N; i++){
		for(int j = i; j <= N; j++){
			int t = i*i+j*j-D;
			// cout<<t<<endl;
			if(t+MAX < 0 || t+MAX >= MAX*2) continue;
			if(temp[t+MAX]){
				// cout<<i<<" "<<j<<" "<<temp[t+MAX]<<endl;
				if(i == j)count += temp[t+MAX];
				else count += temp[t+MAX]*2;
			}
		}
	}
	
	cout<<count<<endl;
	
	return 0;
}
0