Time Limit: 1 Second Memory Limit: 32768 KB
It is known that, in one day the hour hand and the minute hand of a clock meet 22 times. But in one day, how long is the time that the angle between the hour hand and the minute hand is no more than x degrees?
Note that in this problem, both hands move smoothly (they don't "jump").
Input
The first line of the input is an integer indicating the number of test cases (no more than 200).
For each case, there is only one integer x (0 <= x <= 180) giving the angle.
Output
For each case, output for how many seconds in one day that the angle between the hour hand and the minute hand is no more than x degrees. You need to print two digits after the decimal point (as the format in sample).
Sample Input
3 0 180 7
Sample Output
0.00 86400.00 3360.00
Author: HANG, Hang
Source: The 10th Zhejiang University Programming Contest
Submit Status #include<iostream>
#include <iomanip>
using namespace std;int main(void)
{
int ri;
int x;
double time;
cin>>ri;
for( int i = 0; i < ri; i++ ){
cin>>x;
time = 480 * x;
cout<<setprecision(2)<<fixed<<time<<endl;
}
return 0;
}
本文探讨了在一个标准钟表上,时针与分针之间的角度不超过给定阈值的时间长度问题。通过数学公式推导,计算一天中满足条件的总秒数。
1万+

被折叠的 条评论
为什么被折叠?



