ritesh1340

# Determine Ratio in MAXEP Problem December Long Challenge (

Dec 17th, 2018
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. # Determine Ratio in MAXEP Problem December Long Challenge (Python 2.7 Implementation)
  2.  
  3. k=3.5
  4. t=150000
  5. for i in range(5):
  6.     t=(t+k)/(k+1)
  7.     print t
Add Comment
Please, Sign In to add comment