博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU-5387 Clock
阅读量:5219 次
发布时间:2019-06-14

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

http://acm.hdu.edu.cn/showproblem.php?pid=5387

题意:给你一个格式为hh:mm:ss的时间,问时针与分针、时针与秒针、分针与秒针之间夹角的度数是多少,若夹角度数不是整数,则输出A/B最简分数形式。 

思路:每秒钟,分针走是0.1°,时针走(1/120)°;每分钟,时针走0.5°。所以对于时针的角度来说总共走动了h*30+m*0.5+s/120,对于分针的角度来说总共走掉了m*6+s*0.1,对于秒针来说,总共走动了s*6.因为乘法比较除法来说时间复杂度更精确一点,所以我们把走的角度*120,变成全部都是整数,最后再除掉120即可。注意角度差大于180°的情况。要用360度-;

Clock

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)

Total Submission(s): 371 Accepted Submission(s): 256

Problem Description
Give a time.(hh:mm:ss),you should answer the angle between any two of the minute.hour.second hand
Notice that the answer must be not more 180 and not less than 0
 

 

Input
There are
T (1T104) test cases
for each case,one line include the time
0hh<24 ,0mm<60 ,0ss<60
 

 

Output
for each case,output there real number like A/B.(A and B are coprime).if it's an integer then just print it.describe the angle between hour and minute,hour and second hand,minute and second hand.
 

 

Sample Input
4 00:00:00 06:00:00 12:54:55 04:40:00
 

 

Sample Output
0 0 0
180 180 0
1391/24 1379/24 1/2
100 140 120
Hint
每行输出数据末尾均应带有空格
 

 

Source
#include
#include
#include
#include
using namespace std;int gcd(int x,int y){ if(y%x==0)return x; return gcd(y%x,x);}int abs(int x){ if(x>0) return x; else return -1*x;}int main(){ int t; scanf("%d",&t); while(t--) { int h,m,s,a,b,c; scanf("%d:%d:%d",&h,&m,&s); h%=12; h=h*3600+m*60+s; m=m*720+s*12; s=s*720; a=abs(h-m); b=abs(h-s); c=abs(m-s ); if(a>120*180) { a=360*120-a; } if(b>120*180) { b=360*120-b; } if(c>120*180) { c=360*120-c; } //printf("a=%d,b=%d,c=%d\n",a,b,c); if(a%120==0) printf("%d " ,a/120); else { int x=gcd(a,120); printf("%d/%d ",a/x,120/x); } if(b%120==0) printf("%d " ,b/120); else { int y=gcd(b,120); printf("%d/%d ",b/y,120/y); } if(c%120==0) printf("%d " ,c/120); else { int z=gcd(c,120); printf("%d/%d ",c/z,120/z); } printf("\n"); } return 0;}

 

 
 

转载于:https://www.cnblogs.com/cancangood/p/4729942.html

你可能感兴趣的文章
ASP.NET 获得当前网页名字
查看>>
基础练习 龟兔赛跑预测
查看>>
调试Javascript代码(浏览器F12)
查看>>
路径中“/” "\" "\\"的区别
查看>>
lambda 分页 注意问题
查看>>
Java 基础【09】你的多继承纳?
查看>>
linux top指令信息表示
查看>>
CentOS安装Node.js简单教程
查看>>
SQL Server索引优化
查看>>
nginx搭建的cdn服务器的nginx.conf配置文件
查看>>
Django项目在nginx上面的部署(django+flup+nginx)
查看>>
项目九大管理图
查看>>
访问限制符
查看>>
Winform 导入导出方法
查看>>
暑假第二十八测
查看>>
2017西安区域赛A / UVALive - 8512 线段树维护线性基合并
查看>>
喵哈哈村的灯刀姐妹
查看>>
润乾的下拉列表和下拉数据集的使用
查看>>
UML期末复习题——2.9:UML Deployment Diagram
查看>>
在微信公众号开发(微站)过程中用Zepto/jquery的on/live绑定的click事件点击无效(不能执行)...
查看>>