結果

問題 No.800 四平方定理
ユーザー tempura_pptempura_pp
提出日時 2019-03-15 15:38:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 577 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 66,688 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-07-01 19:47:07
合計ジャッジ時間 30,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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){
	        continue;
	    }
	    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