結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 15:37:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 603 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 67,768 KB
実行使用メモリ 9,368 KB
最終ジャッジ日時 2023-09-14 12:18:42
合計ジャッジ時間 15,278 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 5 ms
4,380 KB
testcase_08 AC 6 ms
4,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 WA -
testcase_23 TLE -
testcase_24 WA -
testcase_25 TLE -
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
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)

const int MAX = 12000001;
bool quad[MAX];
int main(){
	int n;
	cin>>n;
	int d;
	cin>>d;
	rep(i,n)quad[(i+1)*(i+1)+d]=1;
	int ans=0;
	REP(i,1,n+1)REP(j,i,n+1){
	    if(i*i+j*j>n*n+d){
	        cout<<ans<<endl;
	        return 0;
	    }
	    REP(k,j,n+1){
		    if(quad[i*i+j*j+k*k]){
			    if(i==j){
				    if(j==k)++ans;
				    else ans+=3;
			    }
			    else if(i==k||j==k)ans+=3;
			    else ans+=6;
		    }
	    }
	}
	cout<<ans<<endl;
	return 0;
}
0