結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 15:31:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 168,112 KB
実行使用メモリ 144,000 KB
最終ジャッジ日時 2024-07-01 19:44:42
合計ジャッジ時間 7,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
143,872 KB
testcase_01 AC 117 ms
143,864 KB
testcase_02 AC 117 ms
143,872 KB
testcase_03 AC 117 ms
143,800 KB
testcase_04 AC 117 ms
143,744 KB
testcase_05 AC 117 ms
143,828 KB
testcase_06 AC 117 ms
143,796 KB
testcase_07 AC 117 ms
143,872 KB
testcase_08 AC 117 ms
143,788 KB
testcase_09 AC 117 ms
143,832 KB
testcase_10 AC 159 ms
143,872 KB
testcase_11 AC 163 ms
144,000 KB
testcase_12 AC 165 ms
143,840 KB
testcase_13 AC 155 ms
143,744 KB
testcase_14 AC 162 ms
143,848 KB
testcase_15 AC 166 ms
143,844 KB
testcase_16 AC 159 ms
143,872 KB
testcase_17 AC 158 ms
143,872 KB
testcase_18 AC 173 ms
143,804 KB
testcase_19 AC 173 ms
143,808 KB
testcase_20 AC 118 ms
143,872 KB
testcase_21 AC 117 ms
143,872 KB
testcase_22 AC 171 ms
143,872 KB
testcase_23 AC 217 ms
143,872 KB
testcase_24 AC 201 ms
143,864 KB
testcase_25 AC 216 ms
143,872 KB
testcase_26 AC 115 ms
143,836 KB
testcase_27 AC 115 ms
143,800 KB
testcase_28 AC 200 ms
143,744 KB
testcase_29 AC 210 ms
143,872 KB
testcase_30 AC 200 ms
143,872 KB
testcase_31 AC 195 ms
143,872 KB
testcase_32 AC 204 ms
143,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)

int MAX = 9e6;
int main(){
	int n;
	cin>>n;
	int d;
	cin>>d;
	vector<long long> cnt1(MAX),cnt2(MAX);
	REP(i,1,n+1)REP(j,1,n+1){
		cnt1[i*i+j*j]++;
		if(i*i-j*j+d>0)cnt2[i*i-j*j+d]++;
	}
	long long ans=0;
	rep(i,MAX)ans+=cnt1[i]*cnt2[i];
	cout<<ans<<endl;
	return 0;
}
0