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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s253764815 | p02400 | u639421643 | 1488267514 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | import math
r = int(input())
S = math.pi * r * r
L = 2 * math.pi * r
print("{0} {1}".format(round(S,5), round(L,5))) | Traceback (most recent call last):
File "/tmp/tmpyqnm35sk/tmp7kmyrd40.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s593220513 | p02400 | u639421643 | 1488267772 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import math
r = input()
r = int(r)
S = math.pi * r * r
L = 2 * math.pi * r
print("{0} {1}".format(round(S,6), round(L,6))) | Traceback (most recent call last):
File "/tmp/tmpo1f_d9cm/tmpydwx7rz1.py", line 2, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s511913924 | p02400 | u639421643 | 1488268090 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import math
r = input()
r = int(r)
S = math.pi * r * r
L = 2 * math.pi * r
print("{0} {1}".format(round(S,6), round(L,6))) | Traceback (most recent call last):
File "/tmp/tmpme1z6iwb/tmpwcy8grgg.py", line 2, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s006851290 | p02400 | u780342333 | 1488359422 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
n = int(input())
res = "%.6f" % float(n * math.pi)
print(res) | Traceback (most recent call last):
File "/tmp/tmpw_hu1o11/tmpog932wek.py", line 2, in <module>
n = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s611261343 | p02400 | u922633376 | 1488511514 | Python | Python3 | py | Runtime Error | 0 | 0 | 195 | import math
if __name__ == "__main__":
r = int(input())
equivalent_of_circle = math.pi*(r**2)
len_of_circle = math.pi*r*2
print("%0.6f %0.6f"%(equivalent_of_circle,len_of_circle)) | Traceback (most recent call last):
File "/tmp/tmpd0xp24mk/tmpqv1bhf2_.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s178328830 | p02400 | u922633376 | 1488511557 | Python | Python3 | py | Runtime Error | 0 | 0 | 199 | if __name__ == "__main__":
import math
r = int(input())
equivalent_of_circle = math.pi*(r**2)
len_of_circle = math.pi*r*2
print("%0.6f %0.6f"%(equivalent_of_circle,len_of_circle)) | Traceback (most recent call last):
File "/tmp/tmpno7ffw4u/tmp60fug4f2.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s703535010 | p02400 | u782850499 | 1488866460 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | r=int(input())
p=3.14159265358979
print("{0:.5f} {1:.5f}".format(p*r**2,2*p*r)) | Traceback (most recent call last):
File "/tmp/tmpv2wzbw5u/tmpumcfpi87.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s102803344 | p02400 | u130834228 | 1488948525 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | import math
r = int(input())
#menseki
a = r*r*math.pi
#ensyu
b = 2*r*math.pi
print("%.5f %.5f" % (a, b)) | Traceback (most recent call last):
File "/tmp/tmpwhz6nxsy/tmp4jskas36.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s676719989 | p02400 | u130834228 | 1488948664 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | import math
r = int(input())
#menseki
a = r*r*math.pi
#ensyu
b = 2*r*math.pi
print("%.5f %.5f" % (a, b)) | Traceback (most recent call last):
File "/tmp/tmpkg7kslbi/tmpbmygo4h9.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s520892616 | p02400 | u130834228 | 1488948803 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | import math
r = flaot(input())
#menseki
a = r*r*math.pi
#ensyu
b = 2*r*math.pi
print("%.5f %.5f" % (a, b)) | Traceback (most recent call last):
File "/tmp/tmprrgx9jlw/tmpygthq5q8.py", line 3, in <module>
r = flaot(input())
^^^^^
NameError: name 'flaot' is not defined. Did you mean: 'float'?
| |
s834386226 | p02400 | u130834228 | 1488949968 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | #small, large or equal
a, b = map(int, input().split())
if a<b:
print('a < b')
elif a>b:
print('a > b')
else:
print('a = b') | Traceback (most recent call last):
File "/tmp/tmpfb844_w8/tmp5lbgorvn.py", line 3, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s255071867 | p02400 | u343748576 | 1489123555 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | r = int(input())
pi = 3.1415926535
area = 2*pi*r
circumference = pi*r**2
print("{0:.6f} {1:.6f}".format(area, circumference)) | Traceback (most recent call last):
File "/tmp/tmpldz6vez7/tmpqkao1uh5.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s247887394 | p02400 | u921541953 | 1489220773 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | import math
r = int(input())
s = r * r * math.pi
c = 2 * r * math.pi
print('{0:0.6f} {1:0.6f}'.format(s, c)) | Traceback (most recent call last):
File "/tmp/tmp83uc4hmy/tmp7wakkniz.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s858452165 | p02400 | u921541953 | 1489220828 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | import math
r = int(input())
s = r * r * math.pi
c = 2 * r * math.pi
print("{0:0.6f} {1:0.6f}".format(s, c)) | Traceback (most recent call last):
File "/tmp/tmp_1sy44vj/tmpxbr91hf9.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s135077751 | p02400 | u868716420 | 1489271482 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
r = int(input())
print('%.6f' % (r * r * math.pi), '%.6f' % (2 * math.pi * r)) | Traceback (most recent call last):
File "/tmp/tmpwzfcmgd2/tmp17y9plsw.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s999643654 | p02400 | u072398496 | 1489372993 | Python | Python | py | Runtime Error | 0 | 0 | 62 | import math
r=input()
print "%.9f"%(math.pi*r*r, math.pi*r*2) | File "/tmp/tmpfzlqd_uc/tmpn5n2zn8o.py", line 3
print "%.9f"%(math.pi*r*r, math.pi*r*2)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s381373030 | p02400 | u897625141 | 1489470927 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r = int(input())
print(str(r*r*3.141592653)+" "+str(r*2*3.141592653)) | Traceback (most recent call last):
File "/tmp/tmp_g9imd9u/tmpmtunhemb.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s350321906 | p02400 | u897625141 | 1489484876 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | r = int(input())
menseki = r*r*3.1415926
syuu = r*2*3.1415926
print(str(menseki)+" "+str(syuu)) | Traceback (most recent call last):
File "/tmp/tmp5zhsmq4b/tmpmdw1yge_.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s910616001 | p02400 | u897625141 | 1489484906 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | r = int(input())
menseki = r*r*3.141592
syuu = r*2*3.141592
print(str(menseki)+" "+str(syuu)) | Traceback (most recent call last):
File "/tmp/tmps3r6ru80/tmpwn759ye3.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s059912348 | p02400 | u897625141 | 1489485196 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | import math
r = int(input())
menseki = r*r*math.pi
syuu = r*2*math.pi
print(str(menseki)+" "+str(syuu)) | Traceback (most recent call last):
File "/tmp/tmpdhiw6crv/tmp8xo_3179.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s837308110 | p02400 | u897625141 | 1489485319 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | import math
r = int(input())
menseki = r*r*math.pi
syuu = r*2*math.pi
print("%.6f" % (menseki),end=" ")
print("%.6f" % (syuu)) | Traceback (most recent call last):
File "/tmp/tmpocqck_a9/tmp088mw5pr.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s323051625 | p02400 | u882690530 | 1489635539 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | import math
r = int(input())
print("{} {}".format(math.pi * r ** 2, 2 * math.pi * r)) | Traceback (most recent call last):
File "/tmp/tmpgkzy_1ka/tmp9x3bny88.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s069736598 | p02400 | u756958775 | 1490018687 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r = int(input())
print("{0:.5f} {1:.5f}".format(math.pi*r**2, 2*math.pi*r)) | Traceback (most recent call last):
File "/tmp/tmpvdkqt8w8/tmpm980g1_e.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s578007191 | p02400 | u756958775 | 1490018735 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r = int(input())
print("{0:.6f} {1:.6f}".format(math.pi*r**2, 2*math.pi*r)) | Traceback (most recent call last):
File "/tmp/tmpt9oa6p6i/tmp2g9k4cf7.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s149359868 | p02400 | u022954704 | 1490074327 | Python | Python3 | py | Runtime Error | 0 | 0 | 160 | import math
r = int(input())
circle_squre = r * r * math.pi
circle_length = (r*2) * math.pi
print('{:.5f}'.format(circle_squre),'{:.5f}'.format(circle_length)) | Traceback (most recent call last):
File "/tmp/tmpoq0jdf89/tmpv0uxb20s.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s627831056 | p02400 | u022954704 | 1490074508 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 |
r = int(input())
circle_squre = r * r * 3.141592
circle_length = (r*2) * 3.141592
print('{:.5f}'.format(circle_squre),'{:.5f}'.format(circle_length)) | Traceback (most recent call last):
File "/tmp/tmpx9_jpknx/tmp7tyne1jk.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s231295761 | p02400 | u042882066 | 1490693809 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | # -*- coding: utf-8 -*-
from math import pi
r = float(input())
area = r**2*pi
circumference = r*pi*2
print("{:.6f} {.6f}".format(area, circumference)) | Traceback (most recent call last):
File "/tmp/tmpxbs9q050/tmpl4bfgjr6.py", line 4, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s516752181 | p02400 | u042882066 | 1490693809 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | # -*- coding: utf-8 -*-
from math import pi
r = float(input())
area = r**2*pi
circumference = r*pi*2
print("{:.6f} {.6f}".format(area, circumference)) | Traceback (most recent call last):
File "/tmp/tmp82_0aiyg/tmpvfkzvbca.py", line 4, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s615637662 | p02400 | u462831976 | 1490781178 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | import math
PI = math.pi
r = int(input())
s = r * r * PI
l = 2 * PI * r
print(s, l) | Traceback (most recent call last):
File "/tmp/tmpbrlg7frl/tmppak4b0c4.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s182397634 | p02400 | u462831976 | 1490781300 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | # -*- coding: utf-8 -*-
import sys
import os
import math
PI = math.pi
r = int(input())
s = r * r * PI
l = 2 * PI * r
print(s, l) | Traceback (most recent call last):
File "/tmp/tmpsun00jgu/tmp7gebawry.py", line 8, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s500660163 | p02400 | u337016727 | 1490938091 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | # codoing: utf-8
import math
num = input()
menseki = int(num)**2*math.pi
ensyu = 2*int(num)*math.pi
print(str("{0:6f}".format(menseki)) + " " + str("{0:6f}".format(ensyu))) | Traceback (most recent call last):
File "/tmp/tmpbrzm1g86/tmplol6ux0w.py", line 5, in <module>
num = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s168190466 | p02400 | u337016727 | 1490938322 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | # cording: utf-8
import math
num = input()
menseki = int(num)**2*math.pi
ensyu = 2*int(num)*math.pi
print(str("{0:6f}".format(menseki)) + " " + str("{0:6f}".format(ensyu))) | Traceback (most recent call last):
File "/tmp/tmpjdb7cte9/tmpuglax23l.py", line 5, in <module>
num = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s005940504 | p02400 | u208157605 | 1491345780 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r = int(input())
print(r * r *math.pi, 2*r*math.pi) | Traceback (most recent call last):
File "/tmp/tmpvqpbhwt1/tmpgjz5mutw.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s494820347 | p02400 | u208157605 | 1491345898 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r = int(input())
print(r * r *math.pi, 2*r*math.pi) | Traceback (most recent call last):
File "/tmp/tmpndimmf8b/tmp74wptnad.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s785889736 | p02400 | u606989659 | 1491382898 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | import math
r = int(input())
s = r ** 2 * math.pi
c = 2 * r * math.pi
print('{0:.5f} {1:.5f}'.format(s,c)) | Traceback (most recent call last):
File "/tmp/tmpe2wb4w5v/tmphh4r8z31.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s466095980 | p02400 | u685534465 | 1491894379 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | r = int(input())
pi = 3.14159265359
v = r*r*pi
w = r*pi
print("{0:.10f} {1:.10f}".format(v,w)) | Traceback (most recent call last):
File "/tmp/tmp6oetcbjq/tmpj8i5qrk5.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s803541891 | p02400 | u685534465 | 1491894415 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | r = int(input())
pi = 3.14159265359
v = r*r*pi
w = r*pi
print("{0:.10f} {1:.10f}".format(v,w)) | Traceback (most recent call last):
File "/tmp/tmp_v_usvxr/tmps6q98ak6.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s760178065 | p02400 | u957680575 | 1492333396 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | import math
r=int(input())
m=math.pi
s=r*r*m
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmpne5ip_ss/tmpfy55u7y6.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s088202080 | p02400 | u957680575 | 1492334355 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r=int(input())
m=float('%03.6f'%math.pi)
s=m*r**2
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmpl90izxw_/tmpyorhnl7o.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s335956323 | p02400 | u957680575 | 1492334499 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r=int(input())
m=float('%03.7f'%math.pi)
s=m*(r**2)
l=(2*r)*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmp4iwwgc6e/tmpm_ynzwra.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s766086269 | p02400 | u957680575 | 1492334833 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r=int(input())
m=float(math.pi)
s=m*(r**2)
l=(2*r)*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmppz4o40ix/tmppvi7rdsm.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s136117135 | p02400 | u957680575 | 1492335354 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmpc8ipo5de/tmp3md9i_0m.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s831492433 | p02400 | u957680575 | 1492335556 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmpb7mmjaah/tmpi_ulzgj8.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s714284597 | p02400 | u957680575 | 1492336928 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmpyk57qpq0/tmprmzdorkg.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s419388250 | p02400 | u286589639 | 1492500620 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | import math
r = int(input())
s = "{0:.6f}".format(r*r*math.pi)
l = "{0:.6f}".format(2*r*math.pi)
print(str(s) + " " + str(l)) | Traceback (most recent call last):
File "/tmp/tmpfq9en1z4/tmpqbvu844a.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s907464985 | p02400 | u286589639 | 1492500748 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
r = int(input())
s = r*r*math.pi
l = 2*r*math.pi
print(str(s) + " " + str(l)) | Traceback (most recent call last):
File "/tmp/tmpu_4u0ecg/tmpchnjgmc8.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s970090938 | p02400 | u286589639 | 1492500867 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | r = int(input())
s = r*r*math.pi
l = 2*r*math.pi
print(str(s) + " " + str(l)) | Traceback (most recent call last):
File "/tmp/tmpp7mbe2wj/tmpdxr2_7a7.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s120168783 | p02400 | u286589639 | 1492501349 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | import math
r = int(input())
s = r*r*math.pi()
l = 2*r*math.pi()
print(str(s) + " " + str(l)) | Traceback (most recent call last):
File "/tmp/tmp75xg5cyp/tmpov2zg9in.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s806337622 | p02400 | u286589639 | 1492590258 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | import math
r = int(input())
s = r * r * math.pi
l = 2 * r * math.pi
print(s, end = " ")
print(l) | Traceback (most recent call last):
File "/tmp/tmpz9yuibuu/tmpzn9t2dxo.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s256673573 | p02400 | u286589639 | 1492590326 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | r = int(input())
s = r * r * 3.14159265358979
l = 2 * r * 3.14159265358979
print(s, end = " ")
print(l) | Traceback (most recent call last):
File "/tmp/tmpmr4f8rtn/tmph7ocqpwu.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s893388791 | p02400 | u286589639 | 1492590388 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | r = int(input())
s = r * r * 3.14159265358979
l = 2 * r * 3.14159265358979 | Traceback (most recent call last):
File "/tmp/tmpxq1cztnj/tmp0g7yj5z2.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s416519568 | p02400 | u286589639 | 1492590426 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 | r = int(input()) | Traceback (most recent call last):
File "/tmp/tmpngf_jy1o/tmpb0au6ks7.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s224246801 | p02400 | u286589639 | 1492590733 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | i = input()
r = int(i)
s = r * r * 3.14159265358979
l = 2 * r * 3.14159265358979
print(s, end = " ")
print(l) | Traceback (most recent call last):
File "/tmp/tmp_bbosqcm/tmpwyddhdhf.py", line 1, in <module>
i = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s346456780 | p02400 | u286589639 | 1492590765 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | r = input()
s = r * r * 3.14159265358979
l = 2 * r * 3.14159265358979
print(s, end = " ")
print(l) | Traceback (most recent call last):
File "/tmp/tmpk2h7i3o7/tmpvipg9tsw.py", line 1, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s571493238 | p02400 | u957680575 | 1492608692 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmpnc51skb9/tmpgs88d_or.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s242214435 | p02400 | u957680575 | 1492608902 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | r = int(input())
m=3.141592
s=r**2*m
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmp4p1b6wx6/tmpx1wxaifg.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s171967001 | p02400 | u957680575 | 1492609249 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | r = int(input())
m=3.141592
s=r**2*m
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmptclr6s24/tmp19zm6ag8.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s017101383 | p02400 | u810591206 | 1492789912 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | import math
r = int(input())
s = math.pi * r ** 2
l = 2 * math.pi * r
print("{:.5f} {:.5f}".format(s, l)) | Traceback (most recent call last):
File "/tmp/tmpt_n531t1/tmp4wcq9_bu.py", line 4, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s077724660 | p02400 | u408260374 | 1492855033 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | from math import pi
r = int(input())
print("{:.010f} {:.010f}".format(2 * pi * r, r * r * pi)) | Traceback (most recent call last):
File "/tmp/tmpieu47l_w/tmp7xfkeeh1.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s011036107 | p02400 | u489071923 | 1492941088 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import math
r = int(input())
print("{0:5f}".format(r**2*math.pi) , end = " ")
print("{0:5f}".format(2*r*math.pi)) | Traceback (most recent call last):
File "/tmp/tmpjptudb_n/tmpikgvvd6h.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s258392017 | p02400 | u957680575 | 1493165162 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) | Traceback (most recent call last):
File "/tmp/tmpc6w5h4ah/tmpp5lxh0ky.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s328892761 | p02400 | u645985665 | 1493604259 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | import math
r = int(input())
area = r*r*math.pi
length = 2*math.pi*r
print("{:8f} {:8f}".format(area,length)) | Traceback (most recent call last):
File "/tmp/tmpubc1t7p0/tmpg5qs3ub2.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s687369562 | p02400 | u126322807 | 1493975595 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | r = int(input())
a = 3.14159265359*r*r
c = 2*3.14159265359*r
print("%.6f %.6f" % (a, c)) | Traceback (most recent call last):
File "/tmp/tmpu0nm9mi8/tmpsm0ivr16.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s458468883 | p02400 | u126322807 | 1493975649 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | r = int(input())
a = 3.14159265359*r*r
c = 2*3.14159265359*r
print("%.6f %.6f" % (a, c)) | Traceback (most recent call last):
File "/tmp/tmpeijfzzpn/tmp3435hm9e.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s484498059 | p02400 | u156215655 | 1494039487 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | import math
r=int(input())
print(r*r*math.pi, 2*r*math.pi) | Traceback (most recent call last):
File "/tmp/tmpuifmquec/tmp0949n8n0.py", line 3, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s126247435 | p02400 | u156215655 | 1494039572 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | ir=int(input())
print(r*r*3.14, 2*r*3.14) | Traceback (most recent call last):
File "/tmp/tmpi9xx02vh/tmpejq7shib.py", line 1, in <module>
ir=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s993308981 | p02400 | u156215655 | 1494039609 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | r=int(input())
print(r*r*3.14, 2*r*3.14) | Traceback (most recent call last):
File "/tmp/tmplbgscuqs/tmp_jbxguem.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s213667916 | p02400 | u156215655 | 1494039656 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | import math
r=int(input())
print(r**2*math.pi, 2*r*math.pi) | Traceback (most recent call last):
File "/tmp/tmphxzm_e42/tmpx5mtylek.py", line 3, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s063165474 | p02400 | u156215655 | 1494039695 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | r=int(input())
print(r**2*3.14, 2*r*3.14) | Traceback (most recent call last):
File "/tmp/tmpv_b8n47p/tmpkhapo2i_.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s302339449 | p02400 | u156215655 | 1494039792 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r=int(input())
area = r**2*math.pi
circle = 2*r*math.pi
print(area, circle) | Traceback (most recent call last):
File "/tmp/tmpzb44it_j/tmp7lof15h_.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s266405668 | p02400 | u156215655 | 1494039815 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r=int(input())
area = r**2*3.14
circle = 2*r*3.14
print(area, circle) | Traceback (most recent call last):
File "/tmp/tmp3tt36tu_/tmphai0ka7v.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s049964041 | p02400 | u156215655 | 1494039951 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math
r = int(input())
print(r**2*math.pi, 2*r*math.pi) | Traceback (most recent call last):
File "/tmp/tmptzxshmv9/tmpwdahme6g.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s057210594 | p02400 | u213265973 | 1494252715 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | from math import pi
r = int(input())
print(r ** 2 * pi, 2 * r * pi) | Traceback (most recent call last):
File "/tmp/tmp27muo5ne/tmpm7ko886n.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s375708561 | p02400 | u362104929 | 1494862222 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format((r*r*pi), (2*r*pi))) | Traceback (most recent call last):
File "/tmp/tmpll1s_fd8/tmpu66hxga2.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s438942990 | p02400 | u362104929 | 1494862357 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format((r*r*pi), (2*r*pi))) | Traceback (most recent call last):
File "/tmp/tmpf963ji6h/tmpv6c3k3rh.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s813316538 | p02400 | u362104929 | 1494862566 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(float(r*r*pi), float(2*r*pi))) | Traceback (most recent call last):
File "/tmp/tmpg2vpdiol/tmp2epge7d_.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s004358551 | p02400 | u362104929 | 1494862865 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | from math import pi
r = int(input())
print("{0:.6f} {1:.6f}".format(float(r*r*pi), float(2*r*pi))) | Traceback (most recent call last):
File "/tmp/tmpk9ms42mn/tmpj7dqncg9.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s998794319 | p02400 | u362104929 | 1494862918 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | from math import pi
r = int(input())
print("{0:.6f} {1:.6f}".format(float(r*r*pi), float(2*r*pi))) | Traceback (most recent call last):
File "/tmp/tmpimtyzxyj/tmplj9gqs8v.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s259739253 | p02400 | u362104929 | 1494863032 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | pi = 3.1415926535
r = int(input())
print("{0:.6f} {1:.6f}".format(float(r*r*pi), float(2*r*pi))) | Traceback (most recent call last):
File "/tmp/tmpm2tf2z4u/tmphc9a_t8h.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s473183604 | p02400 | u362104929 | 1494863087 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | pi=3.1415926535
r = int(input())
print("{0:.6f} {1:.6f}".format(float(r*r*pi), float(2*r*pi))) | Traceback (most recent call last):
File "/tmp/tmpxgtye51l/tmpcylhklei.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s192720157 | p02400 | u452958267 | 1494938644 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | # -*- coding: utf-8 -*
import math
r = int(input())
print('%.6f %.6f' % (r*r*math.pi, 2*r*math.pi)) | Traceback (most recent call last):
File "/tmp/tmpm9gm_jg3/tmplkq_a2eh.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s707010067 | p02400 | u654414650 | 1495095026 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #coding:utf-8
r =int(input())
pi =3.141592653589793238462
print("{0:.5f} {1:.5f}".format(r**2*pi,r*2*pi))
| Traceback (most recent call last):
File "/tmp/tmplogfr2ch/tmpq16k5vw9.py", line 3, in <module>
r =int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s478095547 | p02400 | u256678932 | 1495161318 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a, b = map(int, input().split(' '))
print("{} {} {:5f}".format(int(a/b), a%b, a/b)) | Traceback (most recent call last):
File "/tmp/tmph4yivuje/tmpedypmkgi.py", line 1, in <module>
a, b = map(int, input().split(' '))
^^^^^^^
EOFError: EOF when reading a line
| |
s507112708 | p02400 | u603049633 | 1495505579 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | import math
r = int(input())
S = r ** 2 * math.pi
R = 2 * r * math.pi
print("{0:.6f}".format(S) + " " + "{0:.6f}".format(R)) | Traceback (most recent call last):
File "/tmp/tmp049pc_ig/tmp3vz4wy2a.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s566799587 | p02400 | u650790815 | 1495679303 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | r = int(input())
print('{:.5f} {:.5f}'.format(3.14 * r**2,2*3.14*r)) | Traceback (most recent call last):
File "/tmp/tmpv2u3hpv8/tmpyc81hphm.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s710966818 | p02400 | u589276934 | 1495693286 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | import math
r = int(input())
print("{0} {1}".format(r * r * math.pi, 2 * r * math.pi)) | Traceback (most recent call last):
File "/tmp/tmp6q0400x1/tmp_l197fb1.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s466031587 | p02400 | u589276934 | 1495693500 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | import math
r = int(input())
print("{0} {1}".format(format(r * r * math.pi, ".8g"), format(2 * r * math.pi,".8g"))) | Traceback (most recent call last):
File "/tmp/tmpgtgypks9/tmpkmew0ns8.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s369465524 | p02400 | u650790815 | 1495698396 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | r = fload(input())
import math
print(r**2*math.pi,2 * math.pi*r) | Traceback (most recent call last):
File "/tmp/tmp_qrm9q3o/tmp06aatd0i.py", line 1, in <module>
r = fload(input())
^^^^^
NameError: name 'fload' is not defined. Did you mean: 'float'?
| |
s541287258 | p02400 | u440180827 | 1495856600 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r = int(input())
print('{:.6f} {:.6f}'.format(math.pi*r*r, 2*math.pi*r)) | Traceback (most recent call last):
File "/tmp/tmpl5dcsqgp/tmpwrie275o.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s724440985 | p02400 | u342125850 | 1496490842 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | num = int(input())
area = num*num*3.14
circle = 2*3.14*num
print(area,circle) | Traceback (most recent call last):
File "/tmp/tmp98jmdkqt/tmpisbxku43.py", line 1, in <module>
num = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s606958236 | p02400 | u884012707 | 1496625941 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import math
r = int(input())
s=r**2 * math.pi
l=r*2*math.pi
print(s,l) | Traceback (most recent call last):
File "/tmp/tmp9zj291xv/tmp6bq3w601.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s282810162 | p02400 | u193453446 | 1497329648 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | # -*- coding: utf-8 -*-
r = int(input().strip())
p = 3.14159265
m = r * r * p
l = 2 * r * p
print("{0:.6f} {1:.6f}".format(m,l)) | Traceback (most recent call last):
File "/tmp/tmppizbh7vh/tmp1ngok63e.py", line 2, in <module>
r = int(input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s001455108 | p02400 | u431104056 | 1497369346 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | #!/usr/bin/python
import math
r = int(input())
print("{0:5f} {1:5f}".format(r ** 2 * math.pi, 2 * r * math.pi)) | Traceback (most recent call last):
File "/tmp/tmp2_ftbvsa/tmpuzzdsk21.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s015413244 | p02400 | u431104056 | 1497369447 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | #!/usr/bin/python
pi = 3.141592
r = int(input())
print("{0:5f} {1:5f}".format(r ** 2 * pi, 2 * r * pi)) | Traceback (most recent call last):
File "/tmp/tmps9d6e_d6/tmpkuzz56ve.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s217753280 | p02400 | u580737984 | 1497512169 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | import math
r = int(input())
large = r ** 2 * math.pi
length = r * 2 * math.pi
print(large,end=' ')
print(length) | Traceback (most recent call last):
File "/tmp/tmp98dxenyj/tmpnm2kfl5t.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s505586111 | p02400 | u580737984 | 1497512604 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | import math
r = int(input())
large = r ** 2 * math.pi
length = r * 2 * math.pi
print(large,end=' ')
print(length) | Traceback (most recent call last):
File "/tmp/tmp2vd3vneu/tmpx23f260d.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s937628877 | p02400 | u627002197 | 1497623819 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | pi = 3.14159
r = int(input())
print(r*r*pi,2*r*pi) | Traceback (most recent call last):
File "/tmp/tmp490sbrvc/tmpt1o37v5q.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s895876485 | p02400 | u238667145 | 1497683498 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | import math
r = int(input())
print(
math.pow(r, 2) * math.pi,
r * 2 * math.pi
) | Traceback (most recent call last):
File "/tmp/tmp0g7ast1b/tmpx_vm8nn1.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s418576883 | p02400 | u928051788 | 1498007897 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | # Here your code !
import math
r=int(input())
print(r*2*math.pi,r**2*math.pi) | Traceback (most recent call last):
File "/tmp/tmpo2c8b_41/tmp33d6i755.py", line 3, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s938405945 | p02400 | u928051788 | 1498007951 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | import math
r=int(input())
print(r**2*math.pi,r*2*math.pi) | Traceback (most recent call last):
File "/tmp/tmpoiqebbqy/tmp8x1peutv.py", line 2, in <module>
r=int(input())
^^^^^^^
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.