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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s262323228 | p02400 | u244493040 | 1523638184 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | from math import math
print(int(input())**2*math.pi)
| Traceback (most recent call last):
File "/tmp/tmp1bzu83tz/tmpray4faue.py", line 1, in <module>
from math import math
ImportError: cannot import name 'math' from 'math' (/root/miniconda3/envs/sandbox-runtime/lib/python3.11/lib-dynload/math.cpython-311-x86_64-linux-gnu.so)
| |
s578970025 | p02400 | u742505495 | 1523683770 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import math
r = int(input())
print('%f %f' % (2*math.pi*r, (r**2)*math.pi)
| File "/tmp/tmpegwgtjpx/tmpu6u91ezy.py", line 4
print('%f %f' % (2*math.pi*r, (r**2)*math.pi)
^
SyntaxError: '(' was never closed
| |
s858780482 | p02400 | u742505495 | 1523683861 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import math
pi=math.pi
r = int(input())
print('%f %f' % (2*pi*r, r*r*pi))
| Traceback (most recent call last):
File "/tmp/tmp5rav8jrk/tmp35m9odv7.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s206881997 | p02400 | u843169619 | 1523880694 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | import math
pi = math.pi
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmp9t6sl2fo/tmpd63azv7x.py", line 4, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s464463709 | p02400 | u843169619 | 1523880772 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | import math
pi = math.pi
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmplbzduk2x/tmppzwbo_a8.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s415045952 | p02400 | u843169619 | 1523880801 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | import math
pi = math.pi
r = int(input())
area = pi*pi*r
length = pi*r*2
print("{:.5f}".format(area),"{:5f}".format(length))
| Traceback (most recent call last):
File "/tmp/tmp9seauprt/tmpa626yn2u.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s892096579 | p02400 | u843169619 | 1523880889 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | pi = 3.14159265359
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmpe91_hsga/tmporzsokzh.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s172370144 | p02400 | u843169619 | 1523880916 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 |
pi = 3.14159265359
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmpx9c3g4an/tmptcxh0yya.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s028706603 | p02400 | u843169619 | 1523881054 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 |
pi = 3.14159265359
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmprma9ze25/tmptfbwjdsx.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s183098455 | p02400 | u843169619 | 1523881230 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | pi = 3.14159265359
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmpjo8ygj25/tmptev_u1u9.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s639242609 | p02400 | u843169619 | 1523881394 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | pi = 3.14159
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmp5dr77bso/tmpf9_bpry5.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s802409478 | p02400 | u843169619 | 1523881479 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | pi = 3.14159265359
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:.5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmpq0wuub99/tmp72510vvh.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s626513000 | p02400 | u843169619 | 1523881506 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | pi = 3.141592
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:.5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmprvixy1f8/tmpbof_rd7g.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s273786928 | p02400 | u843169619 | 1523881519 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | pi = 3.141592
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:.5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmpvlmrhuyh/tmpbi4frqpl.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s107068649 | p02400 | u843169619 | 1523881802 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | pi = 3.141592
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.5f}'.format(area),'{:.5f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmp97_1vbxb/tmp6274e75a.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s855932316 | p02400 | u843169619 | 1523881921 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 |
pi = 3.14159265359
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.6f}'.format(area),'{:.6f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmp9ytkhex3/tmpmbrqleij.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s960873745 | p02400 | u843169619 | 1523881943 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | pi = 3.14159265359
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.6f}'.format(length),'{:.6f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmp5w_kdp9z/tmpluc2zj9j.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s225062205 | p02400 | u843169619 | 1523882005 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | pi = 3.14159265359
r = int(input())
area = pi*pi*r
length = pi*r*2
print('{:.6f}'.format(area),'{:.6f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmpx_hxn9uj/tmp5h8pb099.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s009394847 | p02400 | u843169619 | 1523882063 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | pi = 3.14159265359
r = int(input())
area = pi*r*r
length = pi*r*2
print('{:.6f}'.format(area),'{:.6f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmpxmky57ap/tmp47da53wj.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s321823443 | p02400 | u843169619 | 1523882081 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | pi = 3.14159265359
r = int(input())
area = pi*r*r
length = pi*r*2
print('{:.6f}'.format(area),'{:.6f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmponvd_kjm/tmpm_qp159l.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s072305282 | p02400 | u843169619 | 1523882166 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | pi = 3.14159265359
r = int(input())
area = pi*r*r
length = 2*r*pi
print('{:.6f}'.format(area),'{:.6f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmphvci62ot/tmp4skax0nz.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s552250987 | p02400 | u843169619 | 1523882353 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | pi = 3.14159265359
r = int(input())
area = r*r*pi
length = 2*r*pi
print('{:.6f}'.format(area),'{:.6f}'.format(length))
| Traceback (most recent call last):
File "/tmp/tmpfm0p6x37/tmp6c71rcyc.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s172600700 | p02400 | u843169619 | 1523882516 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | r = float(input())
pi=math.pi
s = ( r ** 2 ) * pi
l = 2 * r * pi
print s, l
| File "/tmp/tmp5qbtf4qy/tmpryvx24am.py", line 5
print s, l
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s483572076 | p02400 | u843169619 | 1523882527 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | import math
r = float(input())
pi=math.pi
s = ( r ** 2 ) * pi
l = 2 * r * pi
print s, l
| File "/tmp/tmpqy82qjkz/tmpgc6m4m0e.py", line 6
print s, l
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s675956772 | p02400 | u321712183 | 1523882783 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 |
r=int(input())
p=3.14159265359
a=r*r*p
b=p*r*2
print('{:.6f}'.format(a),'{:.6f}'.format(b))
| Traceback (most recent call last):
File "/tmp/tmpcgfpx4aj/tmpvubhioff.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s223316736 | p02400 | u328199937 | 1524194429 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | r = int(input())
x = 3.14159265358979323846
print(r * r * x, 2 * r * x)
| Traceback (most recent call last):
File "/tmp/tmptssdfcor/tmp1yt8m4qw.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s363846166 | p02400 | u328199937 | 1524194537 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | r = int(input())
x = 3.141592653589793238462643383279
print('{:.7f}'.format(r * r * x), '{:.7f}'.format(2 * r * x))
| Traceback (most recent call last):
File "/tmp/tmpoio695b8/tmphwm1nvs1.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s753610146 | p02400 | u648117624 | 1524393992 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r = int(input())
s = math.pi * (r ** 2)
p = 2 * math.pi * r
print(s,p)
| Traceback (most recent call last):
File "/tmp/tmp5ro75vru/tmp39wbogf2.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s666986611 | p02400 | u648117624 | 1524394021 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | import math
r = input()
s = math.pi * (r ** 2)
p = 2 * math.pi * r
print(s,p)
| Traceback (most recent call last):
File "/tmp/tmp1vq95en6/tmpo6hcm286.py", line 3, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s183174218 | p02400 | u648117624 | 1524394174 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | import math
r = input()
s = math.pi * (r ** 2)
p = 2 * math.pi * r
print(s,p)
| Traceback (most recent call last):
File "/tmp/tmpykayjn5f/tmpflzsm9z6.py", line 3, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s152042584 | p02400 | u648117624 | 1524394501 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | from math import pi
r = foat(input())
s = pi * r * r
p = 2 * pi * r
print(s,p)
| Traceback (most recent call last):
File "/tmp/tmp41s03fr9/tmpmosxmv2x.py", line 3, in <module>
r = foat(input())
^^^^
NameError: name 'foat' is not defined. Did you mean: 'float'?
| |
s506968652 | p02400 | u648117624 | 1524394632 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | import math.pi
r = float(input())
s = math.pi * (r ** 2)
p = 2 * math.pi * r
print(s,p)
| Traceback (most recent call last):
File "/tmp/tmp03zg0fks/tmpr_o7vacy.py", line 1, in <module>
import math.pi
ModuleNotFoundError: No module named 'math.pi'; 'math' is not a package
| |
s053217680 | p02400 | u485986915 | 1524460436 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | r = input()
s =2*math.pi*r
v =math.pi*r^2
print(s,v)
| Traceback (most recent call last):
File "/tmp/tmpkrkrrjes/tmp1smn2w4u.py", line 1, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s835663977 | p02400 | u485986915 | 1524460528 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | import math
r = input()
s =2*math.pi*r
v =math.pi*r^2
print(s,v)
| Traceback (most recent call last):
File "/tmp/tmplon6w2hi/tmpho_qxcgc.py", line 2, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s798189538 | p02400 | u485986915 | 1524460639 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r = float(input())
v =2*math.pi*r
s =math.pi*r^2
print(v,s)
| Traceback (most recent call last):
File "/tmp/tmpjctvu034/tmpz4mklkdv.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s174303942 | p02400 | u485986915 | 1524460896 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | import math
r = float(input())
v = math.pi*r^2
s = math.pi*r*2
print('%.7f %.7f'%(v,s))
| Traceback (most recent call last):
File "/tmp/tmpsa92kmwb/tmp0wo92l9i.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s031856815 | p02400 | u074747865 | 1524470411 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | import math
r=int(input())
pritn(float(r*r*pi),float(2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpdf7w6laj/tmpc5hq5ryo.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s823555496 | p02400 | u074747865 | 1524470458 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r=float(input())
pritn(float(r*r*pi),float(2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpf25k6iub/tmpyatn4qe9.py", line 2, in <module>
r=float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s858393526 | p02400 | u074747865 | 1524470504 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r=float(input())
print(float(r*r*pi),float(2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpqu9twg56/tmpu_9duj4y.py", line 2, in <module>
r=float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s280231222 | p02400 | u269391636 | 1524489985 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | from math import pi
print(pi*int(input())**2)
| Traceback (most recent call last):
File "/tmp/tmpnpghxvsv/tmpmuxq_it8.py", line 2, in <module>
print(pi*int(input())**2)
^^^^^^^
EOFError: EOF when reading a line
| |
s527003839 | p02400 | u269391636 | 1524490082 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | from math import pi
print(pi*int(input())**2,pi*int(input())*2)
| Traceback (most recent call last):
File "/tmp/tmpj86wo0zo/tmp7qjxw0n4.py", line 2, in <module>
print(pi*int(input())**2,pi*int(input())*2)
^^^^^^^
EOFError: EOF when reading a line
| |
s964824964 | p02400 | u269391636 | 1524490104 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | from math import pi
k = int(input())
print(pi*k**2,pi*k*2)
| Traceback (most recent call last):
File "/tmp/tmpauor543j/tmp_2cluy0w.py", line 2, in <module>
k = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s401455576 | p02400 | u269391636 | 1524490169 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | pi = 3.14159265358979323846
k = int(input())
print(pi*k**2,pi*k*2)
| Traceback (most recent call last):
File "/tmp/tmpd00mdmdf/tmp0yk97c86.py", line 2, in <module>
k = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s425940760 | p02400 | u836133197 | 1524492055 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | r = int(input())
PI = 3.141592653589793238462647950288419
S = r * r * PI
L = 2 * r * PI
print("%.6f %.6f" % (S, L))
| Traceback (most recent call last):
File "/tmp/tmpf2ry4cam/tmpidyyky4v.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s449719083 | p02400 | u836133197 | 1524492096 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | r = int(input())
PI = 3.141592653589793238462647950288419
S = r * r * PI
L = 2 * r * PI
print("%f %f" % (S, L))
| Traceback (most recent call last):
File "/tmp/tmp7d4qzszg/tmpwpd6p54k.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s480456599 | p02400 | u836133197 | 1524492205 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | r = int(input())
import math
PI = math.pi
S = r * r * PI
L = 2 * r * PI
print("%f %f" % (S, L))
| Traceback (most recent call last):
File "/tmp/tmprm_8b8p9/tmpu_5qu1xs.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s362305667 | p02400 | u074747865 | 1524555360 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | from math import pi
r=int(input())
print("{0:.6f}".format(r*r*pi),"{0:.6f}".format(2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpl8t8vs7u/tmpdssy8r25.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s816766781 | p02400 | u126478680 | 1524637835 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | #! python3
# circle.py
import math
r = int(input())
print("%.6f"%(pow(r, 2)*math.pi), "%.6f"%(2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpy1h9ir7n/tmppq73p44s.py", line 6, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s970366270 | p02400 | u729486845 | 1524668272 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | r = int(input())
s = r*r*pi()
x = 2*r*pi()
print(s, x)
| Traceback (most recent call last):
File "/tmp/tmpjyrqntah/tmpgg2moem5.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s704454675 | p02400 | u729486845 | 1524668371 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | r = float(input())
s = r*r*pi
x = 2*r*pi
print("{} {}".format(s,x))
| Traceback (most recent call last):
File "/tmp/tmp85gfdwy5/tmpc0qi2w7b.py", line 1, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s464241854 | p02400 | u729486845 | 1524668426 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r = float(input())
s = r*r*pi
x = 2*r*pi
print("{} {}".format(s,x))
| Traceback (most recent call last):
File "/tmp/tmp_g13e7wy/tmpcylst2ix.py", line 3, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s311473127 | p02400 | u908651435 | 1524760371 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import numpy
r=int(input())
pi=numpy.pi
print(float(r*2*pi),r**2*pi)
| Traceback (most recent call last):
File "/tmp/tmp_y09ut5o/tmppbw01fuv.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s947514448 | p02400 | u908651435 | 1524760485 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import numpy
r=int(input())
pi=numpy.pi
print(float(r*2*pi),r**2*pi)
| Traceback (most recent call last):
File "/tmp/tmpr5t4a1wx/tmprymlbyo9.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s699617527 | p02400 | u908651435 | 1524761392 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import math
r=int(input())
pi=math.pi
print('{} {}'.format(r**2*pi,r*2*pi))
| Traceback (most recent call last):
File "/tmp/tmpcuw5wxvm/tmpke749vko.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s642558986 | p02400 | u781194524 | 1525147661 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | r=[float(x) for x in input().split()]
print(float(r**2*math.pi),float(2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmptpwtand6/tmpa6l4d21x.py", line 1, in <module>
r=[float(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s534458655 | p02400 | u781194524 | 1525147693 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | r=[int(x) for x in input().split()]
print(float(r**2*math.pi),float(2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpk7o3efs5/tmpezhz1mmq.py", line 1, in <module>
r=[int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s744868050 | p02400 | u781194524 | 1525147717 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | r=[float(x) for x in input().split()]
print(float(r**2*3.1412),float(2*r*3.1412))
| Traceback (most recent call last):
File "/tmp/tmpsoodm9hr/tmpjwyfvv2x.py", line 1, in <module>
r=[float(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s633180388 | p02400 | u781194524 | 1525147766 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | r=[float(x) for x in input().split()]
print(float(r*r*3.1412),float(2*r*3.1412))
| Traceback (most recent call last):
File "/tmp/tmpc8yeybui/tmpzpr0y5qs.py", line 1, in <module>
r=[float(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s978204311 | p02400 | u781194524 | 1525147822 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | input(float(x))
print(float(r*r*math.pi),float(2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmp2bgj1b_p/tmpark5ro6y.py", line 1, in <module>
input(float(x))
^
NameError: name 'x' is not defined
| |
s844344530 | p02400 | u781194524 | 1525147844 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | float(input())
print(float*r*r*math.pi),float(2*r*math.pi))
| File "/tmp/tmpha6xeivx/tmpazsgcgwt.py", line 2
print(float*r*r*math.pi),float(2*r*math.pi))
^
SyntaxError: unmatched ')'
| |
s135524435 | p02400 | u781194524 | 1525147859 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | float(input())
print(float(r*r*math.pi),float(2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpxnlei1s8/tmpit_jexyt.py", line 1, in <module>
float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s405983784 | p02400 | u781194524 | 1525147890 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | r = float(input())
print(float(r*r*math.pi),float(2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpzgc2fr1y/tmp52kj8m_7.py", line 1, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s760018013 | p02400 | u781194524 | 1525148725 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | r = float(input())
pi=math.pi
s = ( r ** 2 ) * pi
l = 2 * r * pi
print s, l
| File "/tmp/tmp4akypbl8/tmppajr4z7u.py", line 5
print s, l
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s037007469 | p02400 | u781194524 | 1525149023 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | r = float(input())
pi=math.pi
s = ( r ** 2 ) * pi
l = 2 * r * pi
print s, l
| File "/tmp/tmpeeehb27z/tmphwq2fa3o.py", line 5
print s, l
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s322542992 | p02400 | u781194524 | 1525149788 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | from math import pi
r = float(input())
print("{:.010f}{:.010f}".format(r*r*math.pi,2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmppbbra566/tmpm70__hr3.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s626083856 | p02400 | u781194524 | 1525243979 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | pi = math.pi
r = float(input())
print("(:.010f),(;.010f)".format(r**2*pi,2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmp9o15io6b/tmpukzh0rh9.py", line 1, in <module>
pi = math.pi
^^^^
NameError: name 'math' is not defined
| |
s355152975 | p02400 | u781194524 | 1525244028 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | pi = math.pi
r = float(input())
print("{:.010f}{;.010f}".format(r**2*pi,2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpvsc5mbeb/tmpqoczo8tb.py", line 1, in <module>
pi = math.pi
^^^^
NameError: name 'math' is not defined
| |
s750059593 | p02400 | u781194524 | 1525244038 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | pi = math.pi
r = float(input())
print("{:.010f}{:.010f}".format(r**2*pi,2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpzczfpigh/tmpn3us147u.py", line 1, in <module>
pi = math.pi
^^^^
NameError: name 'math' is not defined
| |
s607785186 | p02400 | u781194524 | 1525244062 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | math.pi = pi
r = float(input())
print("{:.010f}{:.010f}".format(r*r*pi,2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmphyehk9j6/tmp_z754kr1.py", line 1, in <module>
math.pi = pi
^^
NameError: name 'pi' is not defined
| |
s259412598 | p02400 | u781194524 | 1525244071 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | pi = math.pi
r = float(input())
print("{:.010f}{:.010f}".format(r*r*pi,2*r*pi))
| Traceback (most recent call last):
File "/tmp/tmppgxljkx_/tmp9pe8fskg.py", line 1, in <module>
pi = math.pi
^^^^
NameError: name 'math' is not defined
| |
s380475340 | p02400 | u215335591 | 1525354837 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | #x = [int(i) for i in input().split()]
x = input()
import math
print(math.pi * x**2, math.pi * 2* x)
| Traceback (most recent call last):
File "/tmp/tmp_a5d2q4m/tmpkx7serli.py", line 2, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s306609106 | p02400 | u215335591 | 1525354897 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x = input()
print(3.141592653589793 * x**2, 3.141592653589793 * 2* x)
| Traceback (most recent call last):
File "/tmp/tmpkyji60tt/tmpe5nmgej9.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s817169185 | p02400 | u215335591 | 1525354948 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | #x = [int(i) for i in input().split()]
x = int(input())
print(3.141592653589793 * x**2, 3.141592653589793 * 2* x)
| Traceback (most recent call last):
File "/tmp/tmpf3j9engc/tmpuot3uoo5.py", line 2, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s882085224 | p02400 | u215335591 | 1525354956 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | x = int(input())
print(3.141592653589793 * x**2, 3.141592653589793 * 2* x)
| Traceback (most recent call last):
File "/tmp/tmpf0q0peex/tmp3aj72tsp.py", line 1, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s621372754 | p02400 | u800997102 | 1525862596 | 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/tmpgzfi8r52/tmpdxsd0dr1.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s838279550 | p02400 | u313089641 | 1525872288 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | from math import pi
r = float(input())
area = lambda r: r * r * pi
length = lambda r: r * 2 * pi
print("{} {}".format(length(r), area(r))
| File "/tmp/tmpivs5xwg2/tmppgdy9o_b.py", line 7
print("{} {}".format(length(r), area(r))
^
SyntaxError: '(' was never closed
| |
s095694039 | p02400 | u067299340 | 1525931110 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | from math import pi
r = int(input())
print("{:f} {:f}".format(r * r * pi, 2 * r * pi))
| Traceback (most recent call last):
File "/tmp/tmpb1axqo0c/tmp31eg_4lc.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s554179828 | p02400 | u361028487 | 1526630614 | 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/tmp93fngcel/tmp8bpio3as.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s611129685 | p02400 | u361028487 | 1526630645 | 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/tmpqf92yruj/tmpqg8fjujs.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s316104124 | p02400 | u406434162 | 1526740799 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | import math
r = int(input())
area = math.pi * r ** 2
circum = 2 * math.pi * r
print("{0:.6f} {1:.6f}".format(area,circum))
| Traceback (most recent call last):
File "/tmp/tmpp0tx5s2z/tmpuvs01_tp.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s647464486 | p02400 | u406434162 | 1526740857 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | import math
r = int(input())
area = math.pi * r ** 2
circum = 2 * math.pi * r
print("{0:.6f} {1:.6f}".format(area,circum))
| Traceback (most recent call last):
File "/tmp/tmpba3zpkci/tmpaeqhz8he.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s706612421 | p02400 | u406434162 | 1526740943 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 |
r = int(input())
area = 3.14159265 * r ** 2
circum = 2 * 3.14159265 * r
print("{0:.6f} {1:.6f}".format(area,circum))
| Traceback (most recent call last):
File "/tmp/tmp4dxz9ax4/tmp2p_a7xur.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s538614110 | p02400 | u002280517 | 1527039122 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | r=float(input())
x=3.14159265359*r*2
y=3.14159265359*r**2
print("{0} {1}".format(x,y))
| File "/tmp/tmp0943ztcw/tmp9t1i99lg.py", line 1
r=float(input())
IndentationError: unexpected indent
| |
s624139781 | p02400 | u136916346 | 1527074986 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r=int(input())
print("{} {}".format(math.pi*r*r,2*math.pi*r))
| Traceback (most recent call last):
File "/tmp/tmpav7f67xn/tmpqc_4ewgl.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s156257183 | p02400 | u136916346 | 1527075029 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | pi=3.141592653589793
r=int(input())
print("{} {}".format(pi*r*r,2*pi*r))
| Traceback (most recent call last):
File "/tmp/tmp8m67ejpj/tmpqeh6adw_.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s874166495 | p02400 | u136916346 | 1527075056 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | import math
r=int(input())
print("{f} {f}".format(math.pi*r*r,2*math.pi*r))
| Traceback (most recent call last):
File "/tmp/tmpbablwvyr/tmp9g10pt76.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s241016932 | p02400 | u303842929 | 1527140564 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import numpy as np
r = float(input())
print("%f %f" % (np.pi * r * r, np.pi * 2 * r))
| Traceback (most recent call last):
File "/tmp/tmp1q40s6h2/tmp_hpxh3r3.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s361890500 | p02400 | u007066325 | 1527457032 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | import math
a = input()
print('{} {}'.format(math.pi*a*2, math.pi*a*a))
| Traceback (most recent call last):
File "/tmp/tmp47ci084_/tmpocax5m3a.py", line 2, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s116349512 | p02400 | u007066325 | 1527457069 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
a = input()
pi = 3.1415926535897
print('{} {}'.format(pi*a*2, pi*a*a))
| Traceback (most recent call last):
File "/tmp/tmppr9ndqn9/tmpnvy759sk.py", line 2, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s318443752 | p02400 | u921810101 | 1527698479 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(input())
print(math.pi * r * r, 2 * math.pi * r)
| Traceback (most recent call last):
File "/tmp/tmpxxaig4gf/tmpqijtg_et.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s130955128 | p02400 | u500257793 | 1527758817 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | import math
r=int(input())
m=r*r*math.pi
s=2*r*math.pi
print(m s)
| File "/tmp/tmp9v8gazmn/tmpbgof9bme.py", line 5
print(m s)
^
SyntaxError: invalid syntax
| |
s150633277 | p02400 | u500257793 | 1527758848 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | import math
r=int(input())
m=r*r*math.pi
s=2*r*math.pi
print(m,s)
| Traceback (most recent call last):
File "/tmp/tmprxj18az1/tmp5dh46gb8.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s571969956 | p02400 | u500257793 | 1527758874 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r=double(input())
m=r*r*math.pi
s=2*r*math.pi
print(m,s)
| Traceback (most recent call last):
File "/tmp/tmpott9zo2d/tmpdol5aogt.py", line 2, in <module>
r=double(input())
^^^^^^
NameError: name 'double' is not defined
| |
s490578941 | p02400 | u990900604 | 1527822473 | Python | Python | py | Runtime Error | 0 | 0 | 141 | import sys
if __name__ == '__main__':
r = int(sys.stdin.read())
pi = 3.14159265359
print "%.5f %.5f" % (pi * r * r, 2 * pi * r)
| File "/tmp/tmpax27epxs/tmppngn5ecd.py", line 6
print "%.5f %.5f" % (pi * r * r, 2 * pi * r)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s364383283 | p02400 | u279483260 | 1528439727 | Python | Python3 | py | Runtime Error | 0 | 0 | 173 | from math import pi
r = int(input())
# 面積
circle_area = r**r * pi
# 円周
circumference = 2.0 * r * pi
print("{0:.6f}, {0:.6f}".format(circle_area, circumference))
| Traceback (most recent call last):
File "/tmp/tmpnxv2ltso/tmpjwvkb13f.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s237592882 | p02400 | u279483260 | 1528439838 | Python | Python3 | py | Runtime Error | 0 | 0 | 162 | from math import pi
r = int(input())
# 面積
circle_area = r * r * pi
# 円周
circumference = 2.0 * r * pi
print("{} {}".format(circle_area, circumference))
| Traceback (most recent call last):
File "/tmp/tmpbia0znus/tmpbq_08c90.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s403681605 | p02400 | u597483031 | 1528472387 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | r=int(input())
py=3.14159265358979
area=py*r*r
longht=py*2*r
print(area,longht)
| Traceback (most recent call last):
File "/tmp/tmp28_r8f81/tmpnzfb_ba7.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s957249695 | p02400 | u597483031 | 1528472652 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | import math
x=int(input())
print(x*x*math.pi,2*math.pi*x)
| Traceback (most recent call last):
File "/tmp/tmppweodn2n/tmpjh9j3c_1.py", line 2, in <module>
x=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s566415786 | p02400 | u597483031 | 1528473051 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | r=int(input())
x=math.pi
print("{:.7f}".format(r*r*x),"{:.7f}".format(2*r*x))
| Traceback (most recent call last):
File "/tmp/tmp65um6m2l/tmpd50jhrpz.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s479196230 | p02400 | u597483031 | 1528473134 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | r=float(input())
x=math.pi
print("{:.7f}".format(r*r*x),"{:.7f}".format(2*r*x))
| Traceback (most recent call last):
File "/tmp/tmpt_5_44o7/tmpk426fqbl.py", line 1, in <module>
r=float(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.