forked from Ouditchya/SPOJ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRPLH.cpp
42 lines (30 loc) · 893 Bytes
/
RPLH.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// AC , ALGO : High School Physics.
/* Some Helpful Links :
http://en.wikipedia.org/wiki/Projectile_motion
http://www.physicsclassroom.com/Class/vectors/U3L2e.cfm
http://physics.gmu.edu/~amin/phys251/Topics/ScientificComputing/sprojectileMotion.html
*/
// For any clarifications, contact me at : [email protected]
#include <cstdio>
#include <cmath>
#define PI 3.14159265
using namespace std ;
int main( )
{
int t , ta , sp , i ;
double angle ;
for( scanf("%d",&t) , i = 1 ; i <= t ; i++ )
{
scanf("%d%d",&ta,&sp) ;
angle = asin( ( 9.806 * ta ) / ( sp * sp ) ) ;
angle /= 2 ;
angle *= 180.0 ;
angle /= PI ;
printf("Scenario #%d: ",i) ;
if( angle <= 45.000000000000 )
printf("%.2lf\n",angle) ;
else
printf("-1\n") ;
}
return 0 ;
}