ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1192. Ball in a Dream

what's wrong in my solution with formula? (WA 2)
Posted by versham 8 May 2018 00:51
Python 3

from math import sin
v, a, k = [float(i) for i in input().split(' ')]

print( round(v * v * sin(a * 3.1415926535 / 90) * k / 10 / (k - 1), 2))