ZOJ_3313_Clock

来源:互联网 发布:淘宝复制找上家 编辑:程序博客网 时间:2024/06/06 14:14
ZOJ Problem Set - 3313
Clock
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

301807

Sample Output

0.0086400.003360.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;
}
原创粉丝点击