s_id string | p_id string | u_id string | date string | language string | original_language string | filename_ext string | status string | cpu_time string | memory string | code_size string | code string | error string | stdout string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s669125574 | p02400 | u423320231 | 1513386465 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | import math
r=int(input())
a=r*r*math.pi
b=2*r*math.pi
print(a,b) | Traceback (most recent call last):
File "/tmp/tmp_75itnis/tmpzjs0dcnj.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s873307273 | p02400 | u423320231 | 1513387064 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | import math
r=int(input())
a=r*r*math.pi
b=2*r*math.pi
print('%.5f %.5f' % (a,b)) | Traceback (most recent call last):
File "/tmp/tmpzi0p7r0x/tmp4y7jwt48.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s219876367 | p02400 | u406002631 | 1513897134 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | import math
r = int(input())
print("{0:5f} {0:5f}".format(float(r * r * math.pi), float(r * 2 * math.pi))) | Traceback (most recent call last):
File "/tmp/tmpphod0t45/tmpso4q6oz3.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s225570745 | p02400 | u585035894 | 1513931773 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | import math
i = int(input())
print(i**2*math.pi, i*2*math.pi) | Traceback (most recent call last):
File "/tmp/tmpgzzmkg0g/tmpkaop5xji.py", line 3, in <module>
i = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s006028971 | p02400 | u506705885 | 1514000032 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | import math
r=int(input())
print(r*r*math.pi,r*2*math.pi) | Traceback (most recent call last):
File "/tmp/tmp11lpfs66/tmpmnn6lmgd.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s016186524 | p02400 | u506705885 | 1514000617 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | import math
r=int(input())
print("{0:.5f}".format(r*r*math.pi),"{0:.5f}".format(r*2*math.pi)) | Traceback (most recent call last):
File "/tmp/tmp9r11ihhn/tmp8ctrjd2w.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s676682783 | p02400 | u506705885 | 1514000695 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | import math
r=double(input())
print("{0:.5f}".format(r*r*math.pi),"{0:.5f}".format(r*2*math.pi)) | Traceback (most recent call last):
File "/tmp/tmpjaqzf_kf/tmpeb9ox8ve.py", line 2, in <module>
r=double(input())
^^^^^^
NameError: name 'double' is not defined
| |
s381064389 | p02400 | u183224403 | 1514331093 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | import math
r = int(input())
pi = math.pi
area = ('%03.6f' % (r * r * pi))
length = ('%03.6f' % (2 * r * pi))
print(area, length, sep=" ") | Traceback (most recent call last):
File "/tmp/tmpz9iawtat/tmp5gd6yp7t.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s817433291 | p02400 | u365686736 | 1514728799 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | import math
r = int(input())
print("%f %f" % (2 * r * math.pi, r ** 2 * math.pi)) | Traceback (most recent call last):
File "/tmp/tmpev3tc308/tmpp4ff2gg2.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s049785940 | p02400 | u737311644 | 1514771243 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | r = int(input())
print(r*r*3.141592,(r+r)*3.141592)
| Traceback (most recent call last):
File "/tmp/tmp38ae7c1j/tmpqtjetx1h.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s309859758 | p02400 | u737311644 | 1514773186 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | from math import pi
r = int(input())
a=r*r*pi
b=(r+r)*pi
print("{0:.6f} {1:.6f}".format( a, b) )
| Traceback (most recent call last):
File "/tmp/tmp7juvrtad/tmpchyli1mi.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s901239122 | p02400 | u737311644 | 1514773186 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | from math import pi
r = int(input())
a=r*r*pi
b=(r+r)*pi
print("{0:.6f} {1:.6f}".format( a, b) )
| Traceback (most recent call last):
File "/tmp/tmpvw9dxs4d/tmpko44gfyv.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s272480858 | p02400 | u839008951 | 1515148135 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | import math
instr = input()
instrSp = instr.split()
a = int(instrSp[0])
print("{a:5f} {b:5f}".format(a=a * a * math.pi, b=2 * a * math.pi))
| Traceback (most recent call last):
File "/tmp/tmpihc0qbk5/tmplanapx6g.py", line 3, in <module>
instr = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s036461383 | p02400 | u839008951 | 1515148325 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | from math import pi
instr = input()
instrSp = instr.split()
a = int(instrSp[0])
print("{a:5f} {b:5f}".format(a=a * a * pi, b=2 * a * pi))
| Traceback (most recent call last):
File "/tmp/tmpfef2kevk/tmpp2j9g19i.py", line 3, in <module>
instr = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s763059205 | p02400 | u426534722 | 1515511746 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | from math import *
r = int(input())
print(r * r * pi, 2 * r * pi)
| Traceback (most recent call last):
File "/tmp/tmpkmsmeri4/tmpb8rlz1nw.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s200028193 | p02400 | u426534722 | 1515511827 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | from math import *
r = int(input())
print("{:.6f} {:.6f}".format(r * r * pi, 2 * r * pi))
| Traceback (most recent call last):
File "/tmp/tmpx6x8c4ok/tmpjz_4rw0n.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s785401184 | p02400 | u426534722 | 1515511858 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(r * r * pi, 2 * r * pi))
| Traceback (most recent call last):
File "/tmp/tmp0lhm1yiw/tmpz6d6bdqn.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s464649061 | p02400 | u426534722 | 1515511873 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(r * r * pi, 2 * r * pi))
| Traceback (most recent call last):
File "/tmp/tmpm2auxdvc/tmp33ltadr2.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s271385333 | p02400 | u426534722 | 1515511963 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | r = int(input())
print("{:.6f} {:.6f}".format(r * r * 3.14159265359, 2 * r * 3.14159265359))
| Traceback (most recent call last):
File "/tmp/tmpjx9e41dr/tmp_dsvv8pw.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s464059136 | p02400 | u426534722 | 1515511984 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r = int(input())
print(r * r * 3.14159265359, 2 * r * 3.14159265359)
| Traceback (most recent call last):
File "/tmp/tmpe3ep39at/tmpg1bn6pd6.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s981189208 | p02400 | u113501470 | 1515796198 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | import math
r = int(input())
a = math.pi * math.pow(r, 2)
c = 2*math.pi*r
print('{} {}'.format(a,c))
| Traceback (most recent call last):
File "/tmp/tmpsix25wxp/tmpks5_c52v.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s557955240 | p02400 | u179070318 | 1515998630 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | from math import pi
r = int(input())
print(pi*r**2,2*pi*r)
| Traceback (most recent call last):
File "/tmp/tmp9o5m10mj/tmp90ek1qwt.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s271291387 | p02400 | u770698847 | 1516188057 | Python | Python | py | Runtime Error | 0 | 0 | 105 | x = raw_input()
r = int(x)
s = r * r * 3.14159265359
l = 2 * r * 3.14159265359
print "%.6f %.6f" % (s,l)
| File "/tmp/tmpmi4fpfh4/tmpvfie7ak3.py", line 5
print "%.6f %.6f" % (s,l)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s197659474 | p02400 | u770698847 | 1516188226 | Python | Python | py | Runtime Error | 0 | 0 | 105 | x = raw_input()
r = int(x)
s = r * r * 3.14159265359
l = 2 * r * 3.14159265359
print "%.6f %.6f" % (s,l)
| File "/tmp/tmpxu8_lkdo/tmpiuuxg998.py", line 5
print "%.6f %.6f" % (s,l)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s910084415 | p02400 | u227984374 | 1516243930 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | r = int(input())
p = 3.14159265
print(p*r*r, p*r*2)
| Traceback (most recent call last):
File "/tmp/tmphvknu3n2/tmp2df4b568.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s700993080 | p02400 | u072855832 | 1516258883 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | import math
r = int(input())
print("{0:.5f}".format(r*r*math.pi))
print("{0:.5f}".format(2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmp8fh79t1_/tmpw1f0iard.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s767804884 | p02400 | u546968095 | 1516781877 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | from math import pi
def circle(r):
print(r*r*pi, 2*pi*r)
return 0
if __name__ == "__main__":
r = input()
ret = circle(int(r))
| Traceback (most recent call last):
File "/tmp/tmpgjl0su30/tmpd8b14ya9.py", line 8, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s088942284 | p02400 | u177808190 | 1517071056 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
x = int(input())
print ('{} {}'.format(math.pi*x*x, 2*math.pi*x))
| Traceback (most recent call last):
File "/tmp/tmpputo_hl7/tmp7vp6tn7v.py", line 2, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s812433589 | p02400 | u640809202 | 1517671096 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | from math import pi
a=int(input())
print(a*pi)
| Traceback (most recent call last):
File "/tmp/tmphmyylxm6/tmpob3rzyzo.py", line 2, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s475256812 | p02400 | u640809202 | 1517671155 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | from math import pi
a=2 * int(input())
print(a*pi)
| Traceback (most recent call last):
File "/tmp/tmp_vcp5ysy/tmpwk84drul.py", line 2, in <module>
a=2 * int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s167234150 | p02400 | u139687801 | 1517691599 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r = int(input())
s = r*r*math.pi
c = 2*r*math.pi
print(s, c)
| Traceback (most recent call last):
File "/tmp/tmpajelvqvf/tmpc9hhx98r.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s340748265 | p02400 | u780025254 | 1517811663 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | r = int(input())
pi = 3.141592653589
print("{:.5f} {:.5f}".format(r ** 2 * pi, 2 * r * pi))
| Traceback (most recent call last):
File "/tmp/tmp6t5c2b1z/tmpl71cl4vp.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s322295981 | p02400 | u780025254 | 1517811773 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | r = int(input())
pi = 3.141592653589
print("{:.10f} {:.10f}".format(r ** 2 * pi, 2 * r * pi))
| Traceback (most recent call last):
File "/tmp/tmpki4ujvjl/tmppmgfok4t.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s976866497 | p02400 | u444576298 | 1518011339 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | #coding:utf-8
import math
r = int(input())
print(str(r * 2 * math.pi) + " " + str(r ** 2 * math.pi))
| Traceback (most recent call last):
File "/tmp/tmpolcntkf6/tmpx0ub8296.py", line 4, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s267308503 | p02400 | u444576298 | 1518011407 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | #coding:utf-8
import math
r = int(input())
print(str(format(r * 2 * math.pi, ".6f")) + " " + str(format(r ** 2 * math.pi, ".6f")))
| Traceback (most recent call last):
File "/tmp/tmpb32bnm8f/tmpg9uzoitq.py", line 4, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s484568710 | p02400 | u613627875 | 1518247101 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import math
r = int(input())
print("%f %f" % (r*r*math.pi, 2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpmsyhg7yx/tmprp0qx1pk.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s259270683 | p02400 | u613627875 | 1518247175 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import math
r = input()
print("%f %f" % (r*r*math.pi, 2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpeu_8fm5q/tmp6xs50pu9.py", line 2, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s702036415 | p02400 | u602702913 | 1519197221 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
r=int(input())
s=r*r*math.pi
l=2*r*math.pi
print(s,l,sep=" ")
| Traceback (most recent call last):
File "/tmp/tmp2ksx328n/tmp635i7ppj.py", line 3, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s366045600 | p02400 | u299231628 | 1519299098 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | r = int(input())
pi = 3.141592653589
a = r * r * pi
l = r * 2 * pi
print('{:0.8} {:0.8}'.format(a, l))
| Traceback (most recent call last):
File "/tmp/tmp6v3nev_s/tmpgl0m9wlj.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s677410990 | p02400 | u299231628 | 1519299173 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | r = int(input())
pi = 3.14159265
a = r * r * pi
l = r * 2 * pi
print('{:0.8} {:0.8}'.format(a, l))
| Traceback (most recent call last):
File "/tmp/tmpq8a6ms0w/tmpb_6is759.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s223441937 | p02400 | u299231628 | 1519299224 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | r = int(input())
a = r * r * 3.14159265
l = r * 2 * 3.14159265
print('{:0.8} {:0.8}'.format(a, l))
| Traceback (most recent call last):
File "/tmp/tmp1fwjdr8o/tmphtxx3wy7.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s871261429 | p02400 | u299231628 | 1519299422 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | r = int(input())
a = r * r * 3.14
l = r * 2 * 3.14
print('{} {}'.format(a, l))
| Traceback (most recent call last):
File "/tmp/tmpiiixgv1q/tmpw9at12oi.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s249979543 | p02400 | u641082901 | 1519744032 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | from math import pi
r = int(input())
print("%.6f %.6f" % (pi*r** 2, 2*pi*r))
| Traceback (most recent call last):
File "/tmp/tmppyaccnx4/tmpr9x8yyqq.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s672366819 | p02400 | u387507798 | 1519785721 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | from math import pi
r = int(input())
print('%.6f %.6f' % (r*r*pi, 2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmp3ui6ydo1/tmpc8f1e5uu.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s261798512 | p02400 | u234508244 | 1519993894 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | r = int(input())
print(r**2*3.14, 2*r*3.14)
| Traceback (most recent call last):
File "/tmp/tmp1_ewn7zk/tmpuhzyaco9.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s937615878 | p02400 | u234508244 | 1520029906 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | r = int(input())
print(r**2 * 3.14, 2 * r * 3.14)
| Traceback (most recent call last):
File "/tmp/tmp0r2fj5d0/tmp3y0tob16.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s733349352 | p02400 | u234508244 | 1520030299 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | r = int(input())
print("{0:f} {1:f}".format(r**2 * 3.14, 2 * r * 3.14))
| Traceback (most recent call last):
File "/tmp/tmpospyrowy/tmpzm5nlgld.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s171528161 | p02400 | u234508244 | 1520030407 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | import math
r = int(input())
print("{0:f} {1:f}".format(r**2 * math.pi, 2 * r * math.pi))
| Traceback (most recent call last):
File "/tmp/tmpz2dmkzao/tmpa49mxf5o.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s200551531 | p02400 | u234508244 | 1520030584 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | r = int(input())
print("{0:f} {1:f}".format(r**2 * 3.141592653589, 2 * r * 3.141592653589))
| Traceback (most recent call last):
File "/tmp/tmpv_e4p291/tmpf7ncsz4g.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s127717903 | p02400 | u234508244 | 1520030783 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | r = int(input())
print("{0:.5f} {1:.5f}".format(r**2 * 3.141592653589, 2 * r * 3.141592653589))
| Traceback (most recent call last):
File "/tmp/tmptqz_rgox/tmpotc1b4xu.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s866092811 | p02400 | u234508244 | 1520031426 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | r = int(input())
print("{0:.6f} {1:.6f}".format(r**2 * 3.141592653589, 2 * r * 3.141592653589))
| Traceback (most recent call last):
File "/tmp/tmpvaj3kbv7/tmpp0tfdtm9.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s085537153 | p02400 | u005739171 | 1520233940 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import math
r = int,input()
pi = math.pi
L = 2*pi*r
S = pi*r*r
print(L,S)
| Traceback (most recent call last):
File "/tmp/tmp84x204ka/tmp5e8ney0n.py", line 2, in <module>
r = int,input()
^^^^^^^
EOFError: EOF when reading a line
| |
s183536733 | p02400 | u806005289 | 1520335263 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | import math
p=math.pi
r=int(input())
a=r*r*p
b=2*r*p
c=round(a,5)
d=round(b,5)
print(str(c)+" "+str(d))
| Traceback (most recent call last):
File "/tmp/tmpwtt1ks15/tmpsktere94.py", line 4, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s320594982 | p02400 | u508054630 | 1520411700 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | r = int(input())
pi = 3.141592653589793
A = float(pow(r, 2) * pi)
S = float(2 * pi * r)
print("{0:.8f}".format(A) + ' ' + "{0:.8f}".format(S))
| Traceback (most recent call last):
File "/tmp/tmpk49kfldh/tmp3v46rm3l.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s256938528 | p02400 | u017435045 | 1520818052 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
a=math.pi*r**2
c=2*math.pi*r
print(a, c)
| Traceback (most recent call last):
File "/tmp/tmpdg37uimm/tmpnfk8y5ir.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s464481914 | p02400 | u017435045 | 1520818166 | Python | Python3 | py | Runtime Error | 0 | 0 | 152 | from math import pi
r=float(input())
print("{} {}".format(r*r*pi,2*pi*r))
from math import pi
r= float(input())
print("{} {}".format(r*r*pi,2*pi*r))
| Traceback (most recent call last):
File "/tmp/tmpvkq28gy0/tmplxu078q3.py", line 2, in <module>
r=float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s807292292 | p02400 | u009101629 | 1520847536 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | a = int(input())
import numpy as np
def main():
e = np.e
pi = np.pi
print(str(pi*a**2) + " " + str(pi*2*a))
if __name__ == '__main__':
main()
| Traceback (most recent call last):
File "/tmp/tmp6aussgmc/tmpnp2x709h.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s294489407 | p02400 | u009101629 | 1520849291 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | R = int(input())
print(str(R*R*3.141592653589793238462623383279) + " " + str(R*2*3.141592653589793238462623383279))
| Traceback (most recent call last):
File "/tmp/tmpn1ppt6y9/tmphmihaahi.py", line 1, in <module>
R = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s295561730 | p02400 | u177081782 | 1520856701 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | r = int(input())
import math
S = "%.5f"%(r ** 2 * math.pi)
L = "%.5f"%(2 * r * math.pi)
print(str(S) + " " + str(L))
| Traceback (most recent call last):
File "/tmp/tmpeynrzof_/tmpte_7lvhj.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s984686902 | p02400 | u177081782 | 1520856759 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | r = int(input())
import math
S = "%.6f"%(r ** 2 * math.pi)
L = "%.6f"%(2 * r * math.pi)
print(str(S) + " " + str(L))
| Traceback (most recent call last):
File "/tmp/tmpoqls377w/tmpoi5ex8io.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s294995543 | p02400 | u646461156 | 1520952968 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
r=int(input())
print("{:.5f} {:.5f}".format(r*r*math.pi,r*2*pi))
| Traceback (most recent call last):
File "/tmp/tmpw2zkaquz/tmpxyzj3sfc.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s303001134 | p02400 | u646461156 | 1520952989 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
r=int(input())
print("{:.5f} {:.5f}".format(r*r*math.pi,r*2*math.pi))
| Traceback (most recent call last):
File "/tmp/tmp4apk96bk/tmp0devuh6e.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s562406353 | p02400 | u646461156 | 1520953044 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
r=int(input())
print("{:.5f} {:.5f}".format(r*r*math.pi,r*2*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpysdscpia/tmp8fx4kp85.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s660519126 | p02400 | u646461156 | 1520953118 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | from math import pi
r=int(input())
print("{:.5f} {:.5f}".format(r*r*pi,r*2*pi))
| Traceback (most recent call last):
File "/tmp/tmp07knr56w/tmpbcfyxi3p.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s283665611 | p02400 | u413145445 | 1521192949 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import math
val = int(input())
print("{0:.8f}".format(2 * val * math.pi), "{0:.8f}".format(val * val * math.pi))
| Traceback (most recent call last):
File "/tmp/tmpaw7olqe4/tmpeqw8ny3s.py", line 3, in <module>
val = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s460054493 | p02400 | u413145445 | 1521193081 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | val = int(input())
print("{0:.8f}".format(2 * val * 3.141592653589793), "{0:.8f}".format(val * val * 3.141592653589793))
| Traceback (most recent call last):
File "/tmp/tmpc99k8f4s/tmp_1h4qjti.py", line 1, in <module>
val = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s582921191 | p02400 | u413145445 | 1521193120 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | val = int(input())
print("{0:.8f}".format(2 * val * 3.141592653589793), "{0:.8f}".format(val * val * 3.141592653589793))
| Traceback (most recent call last):
File "/tmp/tmp2xf3wz3x/tmpcr00vx6q.py", line 1, in <module>
val = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s483063656 | p02400 | u566311709 | 1521458873 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | r = int(input())
print(math.pi * (r ** 2), 2 * math.pi * r)
| Traceback (most recent call last):
File "/tmp/tmpnyj6_3s0/tmpqdtj9df8.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s666153859 | p02400 | u566311709 | 1521459017 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | import math
r = int(input())
print(math.pi * (r ** 2), 2 * math.pi * r)
| Traceback (most recent call last):
File "/tmp/tmpg6nkidtd/tmpy_g_yniq.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s844307802 | p02400 | u566311709 | 1521459057 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | r = float(input())
print(math.pi * (r ** 2), 2 * math.pi * r)
| Traceback (most recent call last):
File "/tmp/tmp5l36h_tx/tmp06h8ysx3.py", line 1, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s768929169 | p02400 | u178477792 | 1521594859 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | import math
r = int(input())
area = math.pi * r * r
circum = 2 * math.pi * r
print(str("{0:.6f}".format(area)) + " " + str("{0:.6f}".format(circum)))
| Traceback (most recent call last):
File "/tmp/tmp8ao0jtkz/tmpr01by192.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s504489182 | p02400 | u178477792 | 1521594889 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | r = int(input())
area = math.pi * r * r
circum = 2 * math.pi * r
print(str("{0:.6f}".format(area)) + " " + str("{0:.6f}".format(circum)))
| Traceback (most recent call last):
File "/tmp/tmp4fo3ebk7/tmpjxxoovxh.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s177288074 | p02400 | u178477792 | 1521594970 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 | r = int(input())
pi = 3.141592653589793
area = pi * r * r
circum = 2 * pi * r
print(str("{0:.6f}".format(area)) + " " + str("{0:.6f}".format(circum)))
| Traceback (most recent call last):
File "/tmp/tmpqlpj1r_1/tmpzkyxdx6e.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s573661154 | p02400 | u027874809 | 1522208440 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
r = int(input())
print('{a:6f} {b:6f}'.format(a=r*r*math.pi, b=r*2*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpko2udqed/tmpnl835qsj.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s928192199 | p02400 | u621084859 | 1522396063 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | from math import pi
r=int(input())
print(pi*r**2)
| Traceback (most recent call last):
File "/tmp/tmpqhgkpi_i/tmpbgyho5ok.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s859320818 | p02400 | u621084859 | 1522396088 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | from math import pi
r=int(input())
print(pi*r**2)
| Traceback (most recent call last):
File "/tmp/tmpnsxrprh1/tmpo4268c28.py", line 3, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s871989514 | p02400 | u621084859 | 1522396152 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | r=int(input())
print(3.1416*r**2)
| Traceback (most recent call last):
File "/tmp/tmpqeqdxrto/tmpvthsxmac.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s643656659 | p02400 | u621084859 | 1522396205 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | r=int(input())
print(3.1416*r*2)
| Traceback (most recent call last):
File "/tmp/tmpinton72o/tmpirj_6_6f.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s274541371 | p02400 | u621084859 | 1522396226 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | r=int(input())
print(r**2)
| Traceback (most recent call last):
File "/tmp/tmpv5_n1ce6/tmprbc3ovdk.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s356200856 | p02400 | u621084859 | 1522398021 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | r=int(input())
print(3.1416* r**2 3.1416* r*2)
| File "/tmp/tmpdxvhoubg/tmp_fl_unui.py", line 2
print(3.1416* r**2 3.1416* r*2)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s154106664 | p02400 | u706023549 | 1522406265 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | #coding: utf-8
r = int(input())
s = r**2*3.1415926535
l = 2*r*3.1415926535
print(str(s) + " " + str(l))
| Traceback (most recent call last):
File "/tmp/tmpue33maf_/tmp38m2xj7f.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s245443535 | p02400 | u002193969 | 1522529088 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | r = int(input())
x = r * r * 3.14159265
y = r * 2 * 3.14159265
print(x, y)
| Traceback (most recent call last):
File "/tmp/tmpewlfaevx/tmpfy9wvtg9.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s811411296 | p02400 | u002193969 | 1522529345 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | r = float(input())
x = r * r * 3.14159265
y = r * 2 * 3.14159265
print("{0:f} {1:f}", format(x, y))
| Traceback (most recent call last):
File "/tmp/tmp2pas4dg0/tmp64t4yoq6.py", line 1, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s975714473 | p02400 | u855668326 | 1522578332 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | from math import pi
r = int(input())
print(pi*r**2, 2*pi*r)
| Traceback (most recent call last):
File "/tmp/tmp5grcbv67/tmpbrx62gfd.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s082045588 | p02400 | u621084859 | 1522629650 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | r=int(input())
p=3.14159265
print(p*r*r 2*p*r)
| File "/tmp/tmp9ncybofl/tmpgcnlxgaw.py", line 3
print(p*r*r 2*p*r)
^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s919000153 | p02400 | u621084859 | 1522629700 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | r=float(input())
p=3.14159265
print(p*r*r 2*p*r)
| File "/tmp/tmpb6megg_n/tmp4bwu2iqz.py", line 3
print(p*r*r 2*p*r)
^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s604960589 | p02400 | u621084859 | 1522632881 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | from math import pi
r = int(input())
a = pi*r*r
b = 2*pi*r
print(a,b)
| Traceback (most recent call last):
File "/tmp/tmpcldhsftc/tmpmjif09t6.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s439785841 | p02400 | u886729200 | 1522718905 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import numpy as np
r = int(input())
print("{} {}".format((np.pi)*r**2 , 2*np.pi*r))
| Traceback (most recent call last):
File "/tmp/tmpvv39tw6n/tmp3pnt0e7h.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s738499113 | p02400 | u886729200 | 1522719119 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | pi = 3.1415926535
r = int(input())
print("{0:.6f} {1:.6f}".format(pi*r**2 , 2*pi*r))
| Traceback (most recent call last):
File "/tmp/tmpd2v1hf_l/tmppxf5b2wh.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s424034837 | p02400 | u886729200 | 1522719139 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | pi = 3.1415926535
r = int(input())
print("{0:.6f} {1:.6f}".format(pi*r**2 , 2*pi*r))
| Traceback (most recent call last):
File "/tmp/tmpkz3g7ouo/tmpla466gov.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s596414906 | p02400 | u886729200 | 1522719757 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | import numpy as np
r = float(input())
print("{0:.8f} {1:.6f}".format(np.pi*r*r , 2*np.pi*r))
| Traceback (most recent call last):
File "/tmp/tmpvkf2s5ef/tmpst37it0h.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s136752782 | p02400 | u886729200 | 1522719875 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | pi = 3.141592653589793
r = float(input())
print("{0:.8f} {1:.6f}".format(np.pi*r*r , 2*np.pi*r))
| Traceback (most recent call last):
File "/tmp/tmp7sglk3iy/tmpeg32cj6j.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s115453685 | p02400 | u886729200 | 1522719891 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | pi = 3.141592653589793
r = float(input())
print("{0:.6f} {1:.6f}".format(np.pi*r*r , 2*np.pi*r))
| Traceback (most recent call last):
File "/tmp/tmp1woyrz7j/tmpuq3luphi.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s494326195 | p02400 | u886729200 | 1522719922 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | pi = 3.141592653589793
r = float(input())
print("{0:.6f} {1:.6f}".format(np.pi*r**2 , 2*np.pi*r))
| Traceback (most recent call last):
File "/tmp/tmpf6ivkesi/tmpwre9eix7.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s836759417 | p02400 | u886729200 | 1522719975 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | pi = 3.141592653589793
r = float(input())
print("{0:.6f} {1:.6f}".format(np.pi*r**2 , 2*np.pi*r))
| Traceback (most recent call last):
File "/tmp/tmpewfjerkm/tmpzil1zmdy.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s215739155 | p02400 | u682153677 | 1523075077 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | # -*- coding: utf-8 -*-
import math
n = list(map(int, input().split()))
print('{0:.6f} {1: .6f}'.format(n[0] * 2 * math.pi, n[0] * n[0] * math.pi))
| Traceback (most recent call last):
File "/tmp/tmpytg186lq/tmp2crspe_a.py", line 3, in <module>
n = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s231024817 | p02400 | u682153677 | 1523075114 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | # -*- coding: utf-8 -*-
import math
n = list(map(input().split()))
print('{0:.6f} {1: .6f}'.format(n[0] * 2 * math.pi, n[0] * n[0] * math.pi))
| Traceback (most recent call last):
File "/tmp/tmpsj1ffpbj/tmpdumyzb0o.py", line 3, in <module>
n = list(map(input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s341411384 | p02400 | u682153677 | 1523075306 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | # -*- coding: utf-8 -*-
import math
n = list(map(float, input().split()))
print('{0:.6f} {1: .6f}'.format(n[0] * n[0] * math.pi), n[0] * 2 * math.pi)
| Traceback (most recent call last):
File "/tmp/tmpodt92v_u/tmp2d28lqbc.py", line 3, in <module>
n = list(map(float, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s298528761 | p02400 | u095590628 | 1523588250 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | r = int(input())
S = r*r*3.1415927
L = 2*r*3.1415927
print("{:.6f} {:.6f}".format(S,L))
| Traceback (most recent call last):
File "/tmp/tmp9jj699l0/tmp5oaehlen.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s883375873 | p02400 | u244493040 | 1523638006 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | import math
print(int(input())**2*math.pi)
| Traceback (most recent call last):
File "/tmp/tmpv5sm3aq_/tmpez4wy_c5.py", line 2, in <module>
print(int(input())**2*math.pi)
^^^^^^^
EOFError: EOF when reading a line
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.