博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 5605 geometry(几何,数学)
阅读量:4991 次
发布时间:2019-06-12

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

Problem Description
There is a point
 P at coordinate (x,y). A line goes through the point, and intersects with the postive part of X,Y axes at point A,B. Please calculate the minimum possible value of |PA||PB|.
 

 

Input
the first line contains a positive integer T,means the numbers of the test cases. the next T lines there are two positive integers X,Y,means the coordinates of P.
T=500,0<X,Y10000.
 

 

Output
T lines,each line contains a number,means the answer to each test case.
 

 

简单推理,来自官方题解:

1 #pragma comment(linker, "/STACK:1024000000,1024000000") 2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #include
14 using namespace std;15 #define ll long long16 #define eps 1e-1017 #define MOD 100000000718 #define N 100000019 #define inf 1e1220 int x,y;21 int main()22 {23 int t;24 scanf("%d",&t);25 while(t--){26 scanf("%d%d",&x,&y);27 printf("%d\n",2*x*y);28 29 }30 return 0;31 }
View Code

 

 

转载于:https://www.cnblogs.com/UniqueColor/p/5164312.html

你可能感兴趣的文章
SSM框架中,controller的action返回参数给vue.js
查看>>
Mysql 基础3
查看>>
smartctl工具应用(转载整理)
查看>>
控件数据绑定总结
查看>>
HTTP协议
查看>>
Vue 框架-09-初识组件的应用
查看>>
.Net core 在类库中获取配置文件Appsettings中的值
查看>>
[转载]sublime用法精华
查看>>
《甄嬛传》影评(整理)
查看>>
数的位数
查看>>
MySQL合并多行
查看>>
[openstack] RDO Quickstart
查看>>
[转载]struts2 中的 addActionError 、addFieldEr
查看>>
[转载]我的PMP复习备考经验谈(上篇)—— 一本关于PMP备考的小指南
查看>>
Mysql命令集
查看>>
记java应用linux服务单个CPU使用率100%分析
查看>>
将文件字节输出流写入到文本中
查看>>
Linux编程之给你的程序开后门
查看>>
Ubuntu下Hadoop的安装和配置
查看>>
VS2010中生成遇到的 web.config 问题
查看>>