HDU 1017 A Mathematical Curiosity
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1017 A Mathematical Curiosity相关的知识,希望对你有一定的参考价值。
数学问题,没难度
附代码
1 #include <iostream> 2 #include <cstdio> 3 4 using namespace std; 5 6 int main() 7 { 8 int N; 9 scanf("%d",&N); 10 while(N--){ 11 int n,m,a,b; 12 int num=0,i=0; 13 while(~scanf("%d%d",&n,&m)&&n){ 14 num=0; 15 for(b=1;b<n;b++){ 16 for(a=1;a<b;a++){ 17 if((a*a+b*b+m)%(a*b) == 0) 18 num++; 19 } 20 21 } 22 23 printf("Case %d: %d\n",++i,num); 24 25 } 26 if(N != 0) 27 printf("\n"); 28 } 29 return 0; 30 }
以上是关于HDU 1017 A Mathematical Curiosity的主要内容,如果未能解决你的问题,请参考以下文章
HDU 1017 A Mathematical Curiosity (数学)
HDU 1017 A Mathematical Curiosity (枚举水题)
HDU 1017 A Mathematical Curiosity
Hdu oj 1017 A Mathematical Curiosity