結果

問題 No.800 四平方定理
ユーザー vjudge1vjudge1
提出日時 2024-10-04 16:28:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 168,280 KB
実行使用メモリ 34,388 KB
最終ジャッジ日時 2024-10-04 16:28:45
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 16 ms
19,620 KB
testcase_11 AC 15 ms
21,904 KB
testcase_12 AC 17 ms
21,868 KB
testcase_13 AC 18 ms
21,152 KB
testcase_14 AC 20 ms
22,580 KB
testcase_15 AC 17 ms
20,940 KB
testcase_16 AC 18 ms
21,640 KB
testcase_17 AC 18 ms
21,860 KB
testcase_18 AC 19 ms
21,264 KB
testcase_19 AC 17 ms
22,360 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 20 ms
22,508 KB
testcase_23 AC 44 ms
34,304 KB
testcase_24 AC 51 ms
34,248 KB
testcase_25 AC 53 ms
34,004 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 1 ms
6,820 KB
testcase_28 AC 50 ms
33,968 KB
testcase_29 AC 46 ms
34,388 KB
testcase_30 AC 46 ms
34,336 KB
testcase_31 AC 38 ms
33,536 KB
testcase_32 AC 47 ms
34,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i,j,k) for(int i=(j);i<=(k);++i)
#define NFOR(i,j,k) for(int i=(j);i>=(k);--i)
#define mkp make_pair
#define fst first
#define sec second
#define inl inline
#define pb push_back
#define el_phy_kongroo return 0
using namespace std;
typedef long long ll;
typedef double db;
typedef unsigned int ui;
typedef pair< int,int > pii;
inline int read()
{
	int s=0,w=1; char ch=getchar();
	while(ch<'0'||ch>'9') {if(ch=='-') w=-1; ch=getchar();}
	while(ch>='0'&&ch<='9') {s=(s<<1)+(s<<3)+ch-'0',ch=getchar();}
	return s*w;
}
void file()
{
	freopen("alive.in","r",stdin);
	freopen("alive.out","w",stdout);
}
void teltim(int x)
{
	clock_t c1=0;
	if(x) c1=clock();
	else cerr<<endl<<clock()-c1<<"ms"<<endl;
}
const int N=2005;

int n,k;
int nm1[N*N*2];

int main()
{
	//file();
	n=read();k=read();
	FOR(i,1,n) FOR(j,1,n) nm1[i*i+j*j]++;
	ll ans=0;
	FOR(i,1,n) FOR(j,1,n) 
	{
		int x=i*i+k-j*j;
		if(x>=0) ans+=nm1[x];
	}
	printf("%lld",ans);
	el_phy_kongroo;
}

0