結果

問題 No.800 四平方定理
ユーザー okok
提出日時 2019-03-17 22:32:57
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 926 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 71,244 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-07-08 00:36:02
合計ジャッジ時間 7,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 39 ms
34,304 KB
testcase_11 RE -
testcase_12 AC 50 ms
37,504 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 59 ms
37,760 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 46 ms
38,400 KB
testcase_19 AC 44 ms
38,400 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 49 ms
38,528 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

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(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