結果

問題 No.800 四平方定理
ユーザー zunda1stzunda1st
提出日時 2019-03-19 17:55:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 42,424 KB
最終ジャッジ日時 2024-09-14 02:13:25
合計ジャッジ時間 2,672 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
42,256 KB
testcase_01 AC 13 ms
42,264 KB
testcase_02 AC 13 ms
42,244 KB
testcase_03 AC 13 ms
42,244 KB
testcase_04 AC 13 ms
42,280 KB
testcase_05 AC 13 ms
42,236 KB
testcase_06 AC 13 ms
42,272 KB
testcase_07 AC 13 ms
42,324 KB
testcase_08 AC 13 ms
42,268 KB
testcase_09 AC 13 ms
42,276 KB
testcase_10 AC 26 ms
42,252 KB
testcase_11 AC 30 ms
42,276 KB
testcase_12 AC 27 ms
42,220 KB
testcase_13 AC 29 ms
42,260 KB
testcase_14 AC 27 ms
42,264 KB
testcase_15 AC 30 ms
42,272 KB
testcase_16 AC 27 ms
42,268 KB
testcase_17 AC 30 ms
42,360 KB
testcase_18 AC 30 ms
42,220 KB
testcase_19 AC 33 ms
42,312 KB
testcase_20 AC 12 ms
42,244 KB
testcase_21 AC 13 ms
42,336 KB
testcase_22 AC 29 ms
42,256 KB
testcase_23 AC 58 ms
42,260 KB
testcase_24 AC 47 ms
42,264 KB
testcase_25 AC 62 ms
42,316 KB
testcase_26 AC 13 ms
42,280 KB
testcase_27 AC 13 ms
42,424 KB
testcase_28 AC 49 ms
42,252 KB
testcase_29 AC 62 ms
42,256 KB
testcase_30 AC 48 ms
42,400 KB
testcase_31 AC 51 ms
42,264 KB
testcase_32 AC 49 ms
42,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<map>
#include<iostream>
#include<deque>
#include<algorithm>
#include<string>
#include<cctype>
#include<iomanip>
#include<vector>
#include<queue>
#include<tuple>
#include<stdio.h>
 
using namespace std;
#define REP(i,b,e) for(ll i=(ll)b;i<(ll)e;i++)
#define rep0(i,n) REP(i,0ll,n)
#define rep1(i,n) REP(i,1ll,n+1)
 
#define shosu setprecision(10)
 
typedef long long ll;
typedef pair<ll,ll> P;
typedef pair<P,ll> Q;
ll longinf=1ll<<60;
int inf=1<<29;
//mleしなければぜんぶllでかく。


int main(){
	int n,d;
	cin>>n>>d;
	vector<int> hoge(10000000,0);
	for(int x=1;x<=n;x++){
		for(int y=1;y<=n;y++){
			hoge[x*x+y*y]++;
		}
	}
	ll ans=0;
	for(int w=1;w<=n;w++){
		for(int z=1;z<=n;z++){
			if(w*w+d-z*z>=1){
				ans+=hoge[w*w+d-z*z];
			}
		}
	}
	cout<<ans<<endl;
    return 0;
}
0