|
|
back to boardlooks it's working but i get "Wrong answer" result can you help me? from math import sqrt f=list((int(x) for x in input().split())) f.reverse() j=list((sqrt(x) for x in f)) for x in j: print('%.4f'%x) Re: looks it's working but i get "Wrong answer" result can you help me? i find it it's need replace input() with sys.stdin.read() from math import sqrt import sys f=list((int(x) for x in sys.stdin.read().split())) f.reverse() j=list((sqrt(x) for x in f)) for x in j: print('%.4f'%x) Re: looks it's working but i get "Wrong answer" result can you help me? What programming language are you using? |
|
|