HDU1017 A Mathematical Curiosity

简介:
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1017
简单题,就是注意下输出格式就ok,
 #include<iostream>
#include<cmath>
using namespace std;
int doProcess(int n,int m)
{
    int temp,count=0;
    for (int a=1;a<n-1;++a)
    {
        for (int b=a+1;b<n;++b)
        {
            temp = a*a+b*b+m;
            if (temp%(a*b)==0)
            {
                count++;
            }
        }
    }
    return count;
}
int main()
{
    int caseNum,n,m,inerCase;
    while (cin>>caseNum)
    {
        for (int i=0;i<caseNum;++i)
        {
            inerCase = 1;
            while (cin>>n>>m&&!(n==0&&m==0))
            {
                cout<<"Case "<<inerCase<<": "<<doProcess(n,m)<<endl;
                inerCase++;
            }
            if (i!=caseNum-1)
            {
                cout<<endl;
            }
        }
    }
    return 0;
}



本文转自Phinecos(洞庭散人)博客园博客,原文链接:http://www.cnblogs.com/phinecos/archive/2008/01/04/1026315.html,如需转载请自行联系原作者
目录
相关文章
UVa10484 - Divisibility of Factors(数论)
UVa10484 - Divisibility of Factors(数论)
64 1
AtCoder Beginner Contest 221 E - LEQ(组合数学 树状数组)
AtCoder Beginner Contest 221 E - LEQ(组合数学 树状数组)
152 0
|
算法
AtCoder Beginner Contest 213 E - Stronger Takahashi(01BFS)
AtCoder Beginner Contest 213 E - Stronger Takahashi(01BFS)
135 0
|
开发者
牛客第六场-Combination of Physics and Maths
题意:选出一个子矩阵,使得所求的压强最大,压强是指这个子矩阵中每个元素之和 / 这个子矩阵最下面一行的元素之和
59 0
牛客第六场-Combination of Physics and Maths
hdu-1098 Ignatius's puzzle(费马小定理)
hdu-1098 Ignatius's puzzle(费马小定理)
154 0
hdu-1098 Ignatius's puzzle(费马小定理)
HDU-1017,A Mathematical Curiosity
HDU-1017,A Mathematical Curiosity
HDU-1027,Ignatius and the Princess II
HDU-1027,Ignatius and the Princess II
|
机器学习/深度学习 自然语言处理