博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu_1017(水水水,坑格式)
阅读量:4309 次
发布时间:2019-06-06

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

1 #include
2 #include
3 using namespace std; 4 int main() 5 { 6 int T; 7 scanf("%d",&T); 8 while(T--) 9 {10 getchar();11 int n,m,sum;12 double tm;13 int cnt = 0;14 while(~scanf("%d%d",&n,&m)){15 if(n==0&&m==0) break;16 sum = 0;17 for(int a = 1; a < n; a++){18 for(int b = a+1; b < n; b++){19 tm = ((double)a*a+(double)b*b +(double)m)/(double)(a*b);20 if((tm -(int)tm)==0) sum++;21 }22 }23 printf("Case %d: %d\n",++cnt,sum);24 }25 if(T!=0)puts("");//最后一个输出块后没有空行26 }27 return 0;28 }

 

转载于:https://www.cnblogs.com/shanyr/p/6664275.html

你可能感兴趣的文章
APP真机测试及发布
查看>>
通知机制 (Notifications)
查看>>
10 Things You Need To Know About Cocoa Auto Layout
查看>>
一个异步网络请求的坑:关于NSURLConnection和NSRunLoopCommonModes
查看>>
iOS 如何放大按钮点击热区
查看>>
ios设备唯一标识获取策略
查看>>
获取推送通知的DeviceToken
查看>>
Could not find a storyboard named 'Main' in bundle NSBundle
查看>>
CocoaPods安装和使用教程
查看>>
Beginning Auto Layout Tutorial
查看>>
block使用小结、在arc中使用block、如何防止循环引用
查看>>
iPhone开发学习笔记002——Xib设计UITableViewCell然后动态加载
查看>>
iOS开发中遇到的问题整理 (一)
查看>>
Swift code into Object-C 出现 ***-swift have not found this file 的问题
查看>>
为什么你的App介绍写得像一坨翔?
查看>>
RTImageAssets插件--@3x可自动生成@2x图片
查看>>
iOS开发的一些奇巧淫技
查看>>
常浏览的博客和网站
查看>>
Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.
查看>>
iOS在Xcode6中怎么创建OC category文件
查看>>