博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1017—A Mathematical Curiosity
阅读量:5283 次
发布时间:2019-06-14

本文共 1507 字,大约阅读时间需要 5 分钟。

Description

Given two integers n and m, count the number of pairs of integers (a,b) such that 0 < a < b < n and (a^2+b^2 +m)/(ab) is an integer. 
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. 

Input

You will be given a number of cases in the input. Each case is specified by a line containing the integers n and m. The end of input is indicated by a case in which n = m = 0. You may assume that 0 < n <= 100. 

Output

For each case, print the case number as well as the number of pairs (a,b) satisfying the given property. Print the output for each case on one line in the format as shown below. 

Sample Input

110 120 330 40 0

Sample Output

Case 1: 2Case 2: 4Case 3: 5 这个题主要注意格式就行了
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 using namespace std;11 #define N 1000512 typedef long long LL;13 int main()14 {15 int t,m,n;16 scanf("%d",&t);17 18 while(t--)19 {20 int k = 1;21 while(scanf("%d%d", &n,&m),m+n)22 {23 int ans = 0;24 for(int i=1;i

 

转载于:https://www.cnblogs.com/biu-biu-biu-/p/5777138.html

你可能感兴趣的文章
第五次团队作业:项目展示
查看>>
WIN10更新后,应用报“不能在此路径中使用此配置节。如果在父级别上锁定了该节,便会出现这种情况”...
查看>>
C#面向对象(二):封装和继承
查看>>
range()函数
查看>>
cs20_3-3
查看>>
codevs1074 食物链
查看>>
少量标签下的模型
查看>>
17.python购物车程序作业
查看>>
lightoj 1027【数学概率】
查看>>
Apparmor——Linux内核中的强制访问控制系统
查看>>
HOJ-1005 Fast Food(动态规划)
查看>>
jQuery 杂项方法
查看>>
系出名门Android(4) - 活动(Activity), 服务(Service), 广播(Broadcast), 广播接收 器(BroadcastReceiver)...
查看>>
Dynamics CRM Microsoft SQL Server 指定的数据库具有更高的版本
查看>>
C++学习基础九——继承
查看>>
android - anim translate中 fromXDelta、toXDelta、fromYDelta、toXDelta属性
查看>>
FasfDFS整合Java实现文件上传下载
查看>>
love2d教程5--摄相机1视角跟随玩家
查看>>
MonGoDB问题笔记
查看>>
用Hadoop构建电影推荐系统
查看>>