欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

费马大定理LA6862

程序员文章站 2022-06-08 11:17:51
...

费马大定理LA6862

#include<cstdio>
#include<iostream>
using namespace std;
int f[120];
int main() {
	int n,m;
	for(int i=0; i<=100; ++i)
		f[i]=i*i;

	while(~scanf("%d%d",&m,&n)) {
		int ans=0;
		for(int x=0; x<=m; ++x)
			for(int y=x; y<=m; ++y)
				for(int z=y; z<=m; ++z)
					if(f[x]+f[y]==f[z]) ++ans;
		ans+=(m+1)*(n-2);
		printf("%d\n",ans);
	}
	return 0;
}