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 1001. Reverse Root

Подскажите в чем трабл?
Posted by Sprint_me 4 Apr 2019 18:47
import sys
from math import sqrt
potok = sys.stdin.read()
spisok = potok.split()[::-1]
if sys.getsizeof(potok)>262144:
    print('большой объем')
    quit()
for i in spisok:
    i=int(i)
    if i>10**18 or i<0:
        print('неверный диапозон')
        quit()
    res = sqrt(int(i))
    print("%.4f" % res)
Re: Подскажите в чем трабл?
Posted by AlexEfremov 21 Jul 2019 11:06
del

Edited by author 21.07.2019 11:08