HDU 1017 A Mathematical Curiosity (数学)
A Mathematical Curiosity
Total Submission(s): 25871 Accepted Submission(s): 8174
This problem contains multiple test cases!
The first line of a multiple input is an integer N, then a blank line followed by N input blocks. Each input block is in the format indicated in the problem description. There is a blank line between input blocks.
The output format consists of N output blocks. There is a blank line between output blocks.
1 10 1 20 3 30 4 0 0
Case 1: 2 Case 2: 4 Case 3: 5
对这道题不解释,题目的样例错了,那个1后面根本不要空行,还是看讨论区才知道。
代码:78MS
#include<iostream> using namespace std; int main(){ int n,m,cont=0,num=0; int T; cin>>T; while(T--) { while(cin>>n>>m&&n!=0) { int a,b; for(a=1;a<=n;++a){ for(b=a+1;b<n;++b){ if((a*a+b*b+m)%(a*b)==0) cont++; } } cout<<"Case "<<++num<<": "<<cont<<endl; //没打空格的同学伤不起啊。。。 cont=0; } num=0; if(T) cout<<endl; } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。