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
s865539943
p02400
u956645355
1474278383
Python
Python3
py
Runtime Error
0
0
94
import math r = input() m = (r ** 2) * math.pi l = r * 2 * math.pi print('{} {}'.format(m, l))
Traceback (most recent call last): File "/tmp/tmpa1mutlbz/tmphnpcm3c2.py", line 2, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s471380735
p02400
u956645355
1474278738
Python
Python3
py
Runtime Error
0
0
134
#import math r = input() #m = (r ** 2) * math.pi #l = r * 2 * math.pi m = (r ** 2) * 3.14 l = r * 2 * 3.14 print('{} {}'.format(m, l))
Traceback (most recent call last): File "/tmp/tmpxsk20zhc/tmpt4ubbp4s.py", line 2, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s418818727
p02400
u956645355
1474279043
Python
Python3
py
Runtime Error
0
0
94
import math r = input() m = r ** 2 * 3.14 l = r * 2 * 3.14 print('{:.5f} {:.5f}'.format(m, l))
Traceback (most recent call last): File "/tmp/tmplpfw_eco/tmp0omknrmk.py", line 2, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s838639645
p02400
u111053265
1474552002
Python
Python3
py
Runtime Error
0
0
75
pi = 3.14159265368979 r = int(input()) print('{} {}'.fomrat(2*pi*r,pi*r*r))
Traceback (most recent call last): File "/tmp/tmp1luipt5g/tmp9trl2vv2.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s636031691
p02400
u111053265
1474552076
Python
Python3
py
Runtime Error
0
0
75
pi = 3.14159265368979 r = int(input()) print('{} {}'.format(2*pi*r,pi*r*r))
Traceback (most recent call last): File "/tmp/tmpnd8gn2tw/tmpujly5i03.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s429535112
p02400
u494314211
1475351089
Python
Python3
py
Runtime Error
0
0
81
a=input() a=int(a) p=math.pi b= a*a*p c= a*2*p print('%03.9f' % b,'%03.9f' % c)
Traceback (most recent call last): File "/tmp/tmpxvfu2bsu/tmp495z5cbs.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s947198446
p02400
u494314211
1475351100
Python
Python3
py
Runtime Error
0
0
81
a=input() a=int(a) p=math.pi b= a*a*p c= a*2*p print('%03.9f' % b,'%03.9f' % c)
Traceback (most recent call last): File "/tmp/tmpf0s1bqb2/tmpmvozuqre.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s483056343
p02400
u494314211
1475351132
Python
Python3
py
Runtime Error
0
0
83
a=input() a=float(a) p=math.pi b= a*a*p c= a*2*p print('%03.9f' % b,'%03.9f' % c)
Traceback (most recent call last): File "/tmp/tmpnehm9vv9/tmpe5dn0n69.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s758280016
p02400
u494314211
1475351146
Python
Python3
py
Runtime Error
0
0
83
a=input() a=float(a) p=math.pi b= a*a*p c= a*2*p print('%03.9f' % b,'%03.9f' % c)
Traceback (most recent call last): File "/tmp/tmpqnj2lolk/tmpo8aoq7jq.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s670148991
p02400
u494314211
1475351227
Python
Python3
py
Runtime Error
0
0
83
a=input() a=float(a) p=math.pi b= a*a*p c= a*2*p print('%03.7f' % b,'%03.7f' % c)
Traceback (most recent call last): File "/tmp/tmpcw0fwse7/tmp_ct2y5jb.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s435174028
p02400
u684306364
1475655408
Python
Python3
py
Runtime Error
0
0
120
import math r = [int(x) for x in input().split()] print("{0:f} {1:f}".format(r[0] * r[0] * math.pi, r[0] * 2 * math.pi))
Traceback (most recent call last): File "/tmp/tmpcy4tkz2h/tmpgxw3f60v.py", line 2, in <module> r = [int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s499710004
p02400
u684306364
1475655502
Python
Python3
py
Runtime Error
0
0
125
#import math pi = 3.141592 r = [int(x) for x in input().split()] print("{0:f} {1:f}".format(r[0] * r[0] * pi, r[0] * 2 * pi))
Traceback (most recent call last): File "/tmp/tmp9967ib1s/tmpm92zr80y.py", line 3, in <module> r = [int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s397008913
p02400
u684306364
1475655584
Python
Python3
py
Runtime Error
0
0
100
import math r = input() rr = int(r) print("{0:f} {1:f}".format(rr * rr * math.pi, rr * 2 * math.pi))
Traceback (most recent call last): File "/tmp/tmpd5p_qjmy/tmpgemuuoph.py", line 2, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s234833657
p02400
u159356473
1475725638
Python
Python3
py
Runtime Error
0
0
166
#coding: UTF-8 import math def Circle_Area(r): print(format(r*r*math.pi,'.6f'),format(2*r*math.pi,'.6f')) if __name__=="__main__": Circle_Area(int(input()))
Traceback (most recent call last): File "/tmp/tmp07wrhxfm/tmps7i2v6vx.py", line 8, in <module> Circle_Area(int(input())) ^^^^^^^ EOFError: EOF when reading a line
s476943605
p02400
u237991875
1475999554
Python
Python3
py
Runtime Error
0
0
69
r = int(input()) print("%f %f" % (math.pi * r ** 2, 2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmpa6goe5wy/tmpupuy8f_k.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s263403560
p02400
u237991875
1475999586
Python
Python3
py
Runtime Error
0
0
81
import math r = int(input()) print("%f %f" % (math.pi * r ** 2, 2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmp95hfy5u2/tmp15whtjyr.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s547275000
p02400
u237991875
1475999690
Python
Python3
py
Runtime Error
0
0
81
import math r = int(input()) print("%f %f" % (math.pi * r ** 2, 2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmptsejcqve/tmpxr50rqhy.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s507005798
p02400
u801346721
1476702279
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) S = math.pi * r * r R = 2 * math.pi * r print("{0} {1}".format(S, R))
Traceback (most recent call last): File "/tmp/tmpm0sg5iuw/tmplk2vus_5.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s576879391
p02400
u801346721
1476702351
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) S = math.pi * r * r R = 2 * math.pi * r print("{0} {1}".format(S, R))
Traceback (most recent call last): File "/tmp/tmplkalppeb/tmpqybnaozy.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s262467208
p02400
u801346721
1476702366
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) S = math.pi * r * r R = 2 * math.pi * r print("{0} {1}".format(S, R))
Traceback (most recent call last): File "/tmp/tmp4zqcl2jt/tmpr1gappqz.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s011916823
p02400
u801346721
1476702716
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) S = math.pi * r * r R = 2 * math.pi * r print("{0} {1}".format(S, R))
Traceback (most recent call last): File "/tmp/tmpq7cjx21e/tmp0cgshgvu.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s252264932
p02400
u801346721
1476702760
Python
Python3
py
Runtime Error
0
0
107
from math import math.pi as pi r = int(input()) S = pi * r * r R = 2 * pi * r print("{0} {1}".format(S, R))
File "/tmp/tmptdb8n630/tmp8yxzvinw.py", line 1 from math import math.pi as pi ^ SyntaxError: invalid syntax
s647484965
p02400
u801346721
1476702787
Python
Python3
py
Runtime Error
0
0
96
from math import pi r = int(input()) S = pi * r * r R = 2 * pi * r print("{0} {1}".format(S, R))
Traceback (most recent call last): File "/tmp/tmpztzgu52a/tmpoyczwd7y.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s805306588
p02400
u801346721
1476702820
Python
Python3
py
Runtime Error
0
0
90
pi = 3.141592 r = int(input()) S = pi * r * r R = 2 * pi * r print("{0} {1}".format(S, R))
Traceback (most recent call last): File "/tmp/tmppbyxnp4s/tmpx0my5ghl.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s996836047
p02400
u996758922
1477102248
Python
Python3
py
Runtime Error
0
0
107
import math r = int(input()) a = math.pi*r*r l = 2*math.pi*r print("{:.6f}".format(a),"{:.6f}".format(l))
Traceback (most recent call last): File "/tmp/tmp6gx1_qwh/tmpplzpvm00.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s485893061
p02400
u743390845
1477415543
Python
Python3
py
Runtime Error
0
0
62
r= int(input()) ??= 3.141592653589793238 print(??*r**2,2*??*r)
File "/tmp/tmpofa8snt9/tmp71uuedb8.py", line 2 ??= 3.141592653589793238 ^ SyntaxError: invalid syntax
s008467049
p02400
u743390845
1477415593
Python
Python3
py
Runtime Error
0
0
59
r= int(input()) p= 3.141592653589793238 print(p*r**2,2*p*r)
Traceback (most recent call last): File "/tmp/tmp58dqp_d9/tmpjgdjvjop.py", line 1, in <module> r= int(input()) ^^^^^^^ EOFError: EOF when reading a line
s297818710
p02400
u743390845
1477415617
Python
Python3
py
Runtime Error
0
0
47
r= int(input()) p= 3.141592 print(p*r**2,2*p*r)
Traceback (most recent call last): File "/tmp/tmpwpywz3wg/tmpxo36hpli.py", line 1, in <module> r= int(input()) ^^^^^^^ EOFError: EOF when reading a line
s828266193
p02400
u743390845
1477415781
Python
Python3
py
Runtime Error
0
0
64
r= float(input()) ??= 3.141592653589793238 print(??*r**2,2*??*r)
File "/tmp/tmpgb5kg0rc/tmp5mbpxwxi.py", line 2 ??= 3.141592653589793238 ^ SyntaxError: invalid syntax
s037655710
p02400
u236295012
1477697171
Python
Python3
py
Runtime Error
0
0
95
from math import pow, pi r = int(input()) z = pow(r,2)*pi l = 2*r*pi print('{} {}'.format(z,l))
Traceback (most recent call last): File "/tmp/tmpf7bltzal/tmpq9lnampt.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s699489971
p02400
u236295012
1477697267
Python
Python3
py
Runtime Error
0
0
71
r = int(input()) z = r*r*pi l = 2*r*3.141529 print('{} {}'.format(z,l))
Traceback (most recent call last): File "/tmp/tmp0tjld851/tmpqssz47q0.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s207582113
p02400
u236295012
1477697459
Python
Python3
py
Runtime Error
0
0
73
r = float(input()) z = r*r*pi l = 2*r*3.141529 print('{} {}'.format(z,l))
Traceback (most recent call last): File "/tmp/tmp26af9_s0/tmpm8pk5jnb.py", line 1, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s650834988
p02400
u236295012
1477697556
Python
Python3
py
Runtime Error
0
0
80
r = float(input()) z = r*r*3.141592 l = 2*r*3.141592 print('{} {}'.format(z,l))
File "/tmp/tmpjwfs_hqn/tmpshwflj7k.py", line 1 r = float(input()) IndentationError: unexpected indent
s155060897
p02400
u941509088
1478182695
Python
Python3
py
Runtime Error
0
0
71
r = int(input()) s = r * r * 3.14159 l = r * 2 * 3.14159 print(s,l)
Traceback (most recent call last): File "/tmp/tmpcmek333u/tmpvghbyjpd.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s202981196
p02400
u941509088
1478182730
Python
Python3
py
Runtime Error
0
0
71
r = int(input()) s = r * r * 3.14159 l = r * 2 * 3.14159 print(s,l)
Traceback (most recent call last): File "/tmp/tmpqlwrxxi1/tmpqty1vhnw.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s808803128
p02400
u941509088
1478182828
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) s = r * r * 3.14159 l = r * 2 * 3.14159 print("%.5f %.5f" % (s,l))
Traceback (most recent call last): File "/tmp/tmp_a3rfjtj/tmph65y1qh4.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s506232495
p02400
u941509088
1478183029
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) s = r * r * math.pi l = r * 2 * math.pi print("%.5f %.5f" % (s,l))
Traceback (most recent call last): File "/tmp/tmp9eatkyss/tmpym848iet.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s861798826
p02400
u941509088
1478183073
Python
Python3
py
Runtime Error
0
0
99
import math r = int(input()) s = r * r * math.pi l = r * 2 * math.pi print("%.6f %.6f" % (s,l))
Traceback (most recent call last): File "/tmp/tmp_h55a4bp/tmpn604bwqg.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s315789024
p02400
u635647915
1478907124
Python
Python3
py
Runtime Error
0
0
92
#coding:utf-8 import math r=int(input()) print("%.6f"%(2*math.pi*r)+" %.6f"%(math.pi*r**2))
Traceback (most recent call last): File "/tmp/tmpgpr_deuh/tmprl36yqh5.py", line 4, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s651354934
p02400
u082526811
1478952418
Python
Python3
py
Runtime Error
0
0
103
import math if __name__ == "__main__": r = int(input()) print("%.6f %.6f"%(math.pi*r**2,math.pi*2*r))
Traceback (most recent call last): File "/tmp/tmp80qupb93/tmp7wfczouf.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s469792204
p02400
u086566114
1479306719
Python
Python
py
Runtime Error
0
0
130
import sys import math value = int(sys.stdin.readline()) print round(math.pi * value * value,7), round(2.0 * math.pi * value, 7)
File "/tmp/tmpftajlm9g/tmp1m3wszze.py", line 6 print round(math.pi * value * value,7), round(2.0 * math.pi * value, 7) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s032596595
p02400
u742376116
1479373168
Python
Python
py
Runtime Error
0
0
63
import math r = int(raw_input()) print r*r*math.pi, 2*r*math.pi
File "/tmp/tmpytg5_jnh/tmppgptk7uq.py", line 3 print r*r*math.pi, 2*r*math.pi ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s995534452
p02400
u513411598
1479391030
Python
Python3
py
Runtime Error
0
0
69
import math r = int(input()) print(r ** 2 * math.pi, r * 2 * math.pi)
Traceback (most recent call last): File "/tmp/tmp1l_3dbkn/tmp9nawqz6m.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s285437130
p02400
u742376116
1479392996
Python
Python
py
Runtime Error
0
0
63
import math r = int(raw_input()) print r*r*math.pi, 2*r*math.pi
File "/tmp/tmp10045f8h/tmpxw8v8zrn.py", line 3 print r*r*math.pi, 2*r*math.pi ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s961947402
p02400
u656368260
1479647294
Python
Python3
py
Runtime Error
0
0
84
import math r=int(input()) print("{0:.6f} {1:.6f}".format(r*r*math.pi, 2*r*math.pi))
Traceback (most recent call last): File "/tmp/tmpvto2ralb/tmphzpu1szf.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s853595230
p02400
u226541377
1479700093
Python
Python3
py
Runtime Error
0
0
89
import math r = int(input()) A = r * r * math.pi B = r * 3 * math.pi print(A + " " + B)
Traceback (most recent call last): File "/tmp/tmpmadbdvid/tmpk9osjt7j.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s104287677
p02400
u326248180
1479978873
Python
Python3
py
Runtime Error
0
0
100
a = int(input()) import math r = a * a * math.pi r2 = a * 2 * math.pi print("%.10f %.10f" % (r, r))
Traceback (most recent call last): File "/tmp/tmp78ijx50i/tmpt504ldzj.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s933030851
p02400
u326248180
1479978893
Python
Python3
py
Runtime Error
0
0
82
a = int(input()) r = a * a * 3,14 r2 = a * 2 * 3.14 print("%.10f %.10f" % (r, r))
Traceback (most recent call last): File "/tmp/tmp3vj2hru7/tmpsfj1_0wl.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s115974649
p02400
u326248180
1479979078
Python
Python3
py
Runtime Error
0
0
84
a = int(input()) r = a * a * 3,14 r2 = a * 2 * 3.14 print("%.10f %.10f" % (r, r2))
Traceback (most recent call last): File "/tmp/tmpjfswapxv/tmp6kueh51b.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s600611319
p02400
u326248180
1479979122
Python
Python3
py
Runtime Error
0
0
101
a = int(input()) import math r = a * a * math.pi r2 = a * 2 * math.pi print("%.10f %.10f" % (r, r2))
Traceback (most recent call last): File "/tmp/tmpxdwue9kk/tmp_g9772ws.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s726319320
p02400
u435300817
1480207738
Python
Python3
py
Runtime Error
0
0
92
import math r = int(input()) ret = r * r * math.pi print('{0:.5f} {1:.5f}'.format(ret, ret))
Traceback (most recent call last): File "/tmp/tmp0oolity7/tmpikksgqin.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s623140815
p02400
u435300817
1480208159
Python
Python3
py
Runtime Error
0
0
81
r = int(input()) ret = r * r * 3.141592 print('{0:.5f} {1:.5f}'.format(ret, ret))
Traceback (most recent call last): File "/tmp/tmptgifykbx/tmp72_bf6s9.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s796355176
p02400
u435300817
1480208236
Python
Python3
py
Runtime Error
0
0
92
import math r = int(input()) ret = r * r * math.pi print('{0:.6f} {1:.6f}'.format(ret, ret))
Traceback (most recent call last): File "/tmp/tmpuy47fxig/tmpnb76boii.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s944853053
p02400
u435300817
1480208452
Python
Python3
py
Runtime Error
0
0
96
import math r = int(input()) print('{0:.6f} {1:.6f}'.format(r * r * math.pi, (r + r) * math.pi))
Traceback (most recent call last): File "/tmp/tmpbfuv2n7o/tmpez2qnopu.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s424444442
p02400
u811733736
1480345439
Python
Python3
py
Runtime Error
0
0
189
if __name__ == '__main__': from math import pi radius = int(input()) area = radius**2 * pi perimeter = 2 * radius * pi print('{0:.6f} {1:.6f}'.format(area, perimeter))
Traceback (most recent call last): File "/tmp/tmpduakf6vl/tmp5ikux81w.py", line 3, in <module> radius = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s442603202
p02400
u811733736
1480345484
Python
Python3
py
Runtime Error
0
0
189
import math if __name__ == '__main__': radius = int(input()) area = radius**2 * math.pi perimeter = 2 * radius * math.pi print('{0:.6f} {1:.6f}'.format(area, perimeter))
Traceback (most recent call last): File "/tmp/tmpl75qiqdl/tmp_3mby0s5.py", line 5, in <module> radius = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s063605940
p02400
u250482563
1480567264
Python
Python3
py
Runtime Error
0
0
80
from math import pi r = froat(input()) s = pi * r * r l = 2 * pi * r print(s, l)
Traceback (most recent call last): File "/tmp/tmp6on7t_vp/tmp5jv2twrc.py", line 2, in <module> r = froat(input()) ^^^^^ NameError: name 'froat' is not defined. Did you mean: 'float'?
s188247582
p02400
u910432023
1481030458
Python
Python3
py
Runtime Error
0
0
60
import math r = int(input()) print(2*math.pi*r, math.pi*r*r)
Traceback (most recent call last): File "/tmp/tmpi89mgleh/tmpiizz71bm.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s269432265
p02400
u385274266
1481365219
Python
Python3
py
Runtime Error
0
0
80
r = int(input()) pi=3.1415926535 print('{0:.6f} {1:.6f}'.format(r**2*pi,r*2*pi))
Traceback (most recent call last): File "/tmp/tmpafm1gf1u/tmp50stjsbs.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s402819444
p02400
u732614538
1481480718
Python
Python3
py
Runtime Error
0
0
61
from math import pi print('{.5f} {.5f}'.format(r*r*pi,r*2*pi)
File "/tmp/tmpm5i9uc6x/tmpreuk4zj1.py", line 2 print('{.5f} {.5f}'.format(r*r*pi,r*2*pi) ^ SyntaxError: '(' was never closed
s984308606
p02400
u732614538
1481480783
Python
Python3
py
Runtime Error
0
0
79
from math import pi r = int(input()) print('{.5f} {.5f}'.format(r*r*pi,r*2*pi))
Traceback (most recent call last): File "/tmp/tmph6fb26ru/tmpw3vd1w09.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s916653773
p02400
u732614538
1481480812
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/tmplbrd76no/tmpl_dy6gw2.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s461625475
p02400
u732614538
1481480821
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/tmp09g4avvi/tmpuz6_973u.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s904291724
p02400
u732614538
1481480876
Python
Python3
py
Runtime Error
0
0
83
from math import pi r = int(input()) print('{0:.5f} {1:.5f}'.format(r*r*pi,r*2*pi))
Traceback (most recent call last): File "/tmp/tmp63kuw4o5/tmpikz1n2it.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s066309110
p02400
u078042885
1481654440
Python
Python3
py
Runtime Error
0
0
71
from math import pi r=int(input()) print("{} {}".format(r*r*pi,2*pi*r))
Traceback (most recent call last): File "/tmp/tmpsxv2kxnw/tmp8aw304y8.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s770561115
p02400
u106285852
1481736311
Python
Python3
py
Runtime Error
0
0
693
''' ITP-1_4-B ????????¢?????¨?????¨ ?????? r ???????????¢?????¨?????¨?????????????±???????????????°????????????????????????????????? Input ??????????????° r ???????????????????????? Output ??¢?????¨?????¨?????????????????????????????§????????£????????????????????????????????????????????????????°???°?????°??¨??????0....
File "/tmp/tmpzfq9f3cn/tmpvy_3_gwr.py", line 17 ?? = math.pi ^ SyntaxError: invalid syntax
s477730437
p02400
u923668099
1481765841
Python
Python3
py
Runtime Error
0
0
107
# coding: utf-8 # Here your code ! import math r = int(input()) print("{0:.8f}".format(r ** 2 * math.pi))
Traceback (most recent call last): File "/tmp/tmps7a2ahlz/tmpdjswlme8.py", line 5, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s599492574
p02400
u923668099
1481765932
Python
Python3
py
Runtime Error
0
0
131
# coding: utf-8 # Here your code ! import math r = int(input()) print("{0:.8f} {1:.8f}".format(r ** 2 * math.pi,2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmpameu4tkz/tmp6kgcrvwd.py", line 5, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s138946916
p02400
u923668099
1481766054
Python
Python3
py
Runtime Error
0
0
133
# coding: utf-8 # Here your code ! import math r = int(input()) print("{0:.8f} {1:.8f}".format((r ** 2) * math.pi,2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmp4exjsqrx/tmp20q2wu7z.py", line 5, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s442741136
p02400
u234837959
1482331197
Python
Python3
py
Runtime Error
0
0
128
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/tmpbjh_s567/tmpc6t4xm86.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s072899197
p02400
u234837959
1482331242
Python
Python3
py
Runtime Error
0
0
128
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/tmpq8mbcwoc/tmp7vg4z50e.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s744912761
p02400
u156024720
1482654794
Python
Python3
py
Runtime Error
0
0
186
r = int(input()) if r > 0 and r < 10000: circle_length = (r * 2) * 3.14 circle_area = r * r * 3.14 print("{0:f} {1:f}".format(circle_area, circle_length)) else: pass
Traceback (most recent call last): File "/tmp/tmpj1an_qch/tmpztaay6vm.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s277542957
p02400
u313089641
1483243063
Python
Python3
py
Runtime Error
0
0
105
import math x = int(input()) c = x * 2 * math.pi a = x ** 2 * math.pi print('{:.6f} {:.6f}'.format(c, a))
Traceback (most recent call last): File "/tmp/tmpydj7n5cd/tmpkv4o1ym4.py", line 2, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s030759753
p02400
u313089641
1483243756
Python
Python3
py
Runtime Error
0
0
105
import math x = int(input()) c = x * 2 * math.pi a = x ** 2 * math.pi print('{:.6f} {:.6f}'.format(c, a))
Traceback (most recent call last): File "/tmp/tmp2z6i4fwb/tmpyu6hn115.py", line 2, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s836807371
p02400
u019678978
1483976689
Python
Python3
py
Runtime Error
0
0
92
import math a = int(input()) area = a * a * math.pi cir = (a * 2) * math.pi print(area,cir)
Traceback (most recent call last): File "/tmp/tmprh_spufh/tmpaafpqysw.py", line 3, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s119054503
p02400
u019678978
1483976807
Python
Python3
py
Runtime Error
0
0
92
import math a = int(input()) area = a * a * math.pi cir = (a * 2) * math.pi print(area,cir)
Traceback (most recent call last): File "/tmp/tmpoonl3xir/tmpaqszb594.py", line 3, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s003559542
p02400
u656153606
1484365211
Python
Python3
py
Runtime Error
0
0
117
import math r = int(input()) S = r * r * math.pi L = 2 * r * math.pi print('{0:.5f}'.format(S),'{0:.5f}'.format(L))
Traceback (most recent call last): File "/tmp/tmp4cgh0cyy/tmp7zr_sk7o.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s338972391
p02400
u656153606
1484365307
Python
Python3
py
Runtime Error
0
0
117
import math r = int(input()) S = r * r * math.pi L = 2 * r * math.pi print('{0:.6f}'.format(S),'{0:.6f}'.format(L))
Traceback (most recent call last): File "/tmp/tmp9qevonlh/tmpfc4ga2z7.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s071992577
p02400
u276050131
1484817830
Python
Python3
py
Runtime Error
0
0
64
r = input() r = int(r) print(r ** 2 * 3.14) print(r * 2 * 3.14)
Traceback (most recent call last): File "/tmp/tmpyp29d6tv/tmpddtbw_fc.py", line 1, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s655930943
p02400
u276050131
1484818077
Python
Python3
py
Runtime Error
0
0
137
import math r = input() r = int(r) s = r ** 2 * math.pi enshu = r * 2 * math.pi print("{0:.6f}".format(s)) print("{0:.6f}".format(enshu))
Traceback (most recent call last): File "/tmp/tmp82lrybv_/tmpsjzwwb8j.py", line 2, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s547903813
p02400
u519227872
1485278111
Python
Python
py
Runtime Error
0
0
82
from math import pi r = int(raw_input()) print "%s %s"%(pi * pow(r,2), 2 * pi * r)
File "/tmp/tmpzdtmaubi/tmpurwqc_lu.py", line 3 print "%s %s"%(pi * pow(r,2), 2 * pi * r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s195788998
p02400
u964416376
1485534850
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) a = r * r * math.pi c = 2 * r * math.pi print('%.6f %.6f' % (a, c))
Traceback (most recent call last): File "/tmp/tmpmfzt8j6a/tmpvq23ghzt.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s001734117
p02400
u148628801
1485927460
Python
Python3
py
Runtime Error
0
0
111
import math r = int(input()) s = math.pi * r ** 2 l = 2 * math.pi * r print("{0:.6f} {1:.6f}".format(s, l))
Traceback (most recent call last): File "/tmp/tmp8o8zohgn/tmpym0u_7w0.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s861807505
p02400
u104171359
1486103527
Python
Python3
py
Runtime Error
0
0
360
#!usr/bin/env python3 import sys from math import pi def area_of_circle(radius): return pi * radius**2 def circumference_of_circle(radius): return 2*pi*radius def main(): r = int(sys.stdin.readline()) print(r) print(type(r)) print('%f %f' % (area_of_circle(r), circumference_of_circle(r)))...
Traceback (most recent call last): File "/tmp/tmpenlat7da/tmpi0gudlgn.py", line 23, in <module> main() File "/tmp/tmpenlat7da/tmpi0gudlgn.py", line 16, in main r = int(sys.stdin.readline()) ^^^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: ''
s620049998
p02400
u104171359
1486103873
Python
Python3
py
Runtime Error
0
0
325
#!usr/bin/env python3 import sys from math import pi def area_of_circle(radius): return pi * radius**2 def circumference_of_circle(radius): return 2*pi*radius def main(): r = (sys.stdin.readline()) print('%f %f' % (area_of_circle(r), circumference_of_circle(r))) if __name__ == '__main__': m...
Traceback (most recent call last): File "/tmp/tmplaz2acch/tmplq85a7d5.py", line 21, in <module> main() File "/tmp/tmplaz2acch/tmplq85a7d5.py", line 17, in main print('%f %f' % (area_of_circle(r), circumference_of_circle(r))) ^^^^^^^^^^^^^^^^^ File "/tmp/tmplaz2acch/tmplq85a7d5.py", li...
s324823172
p02400
u731896389
1486399817
Python
Python3
py
Runtime Error
0
0
69
import math r = int(input()) print("%d %d"%(math.pi*r*r,2*math.pi*r))
Traceback (most recent call last): File "/tmp/tmp6cz9mtwj/tmpk9i57a5_.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s734272064
p02400
u227438830
1487047384
Python
Python3
py
Runtime Error
0
0
101
a, b = map(int, input().split()) d = a//b r = a % b f = a / b print("{:d} {:d} {:.5f}".format(d,r,f))
Traceback (most recent call last): File "/tmp/tmp0nmnxosy/tmpxuand87r.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s207952477
p02400
u548155360
1487151876
Python
Python3
py
Runtime Error
0
0
110
import math r = map(float,input()) S = math.pi * r * r l = 2 * r * math.pi print('{0:f} {1:f}'.format(S,l))
Traceback (most recent call last): File "/tmp/tmp55yrdquk/tmpd4tzrdv9.py", line 3, in <module> r = map(float,input()) ^^^^^^^ EOFError: EOF when reading a line
s248495712
p02400
u553058997
1487755870
Python
Python3
py
Runtime Error
0
0
69
import math r = int(input()) print(r ** 2 * math.pi, r * 2 * math.pi)
Traceback (most recent call last): File "/tmp/tmp_7cqwkvv/tmp3o9fddyl.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s567259621
p02400
u553058997
1487755923
Python
Python3
py
Runtime Error
0
0
69
import math r = int(input()) print(r ** 2 * math.pi, r * 2 * math.pi)
Traceback (most recent call last): File "/tmp/tmpcunftuhd/tmp3qyogyyt.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s079516450
p02400
u553058997
1487755954
Python
Python3
py
Runtime Error
0
0
77
r = int(input()) print(r ** 2 * 3.141592653589793, r * 2 * 3.141592653589793)
Traceback (most recent call last): File "/tmp/tmpr8h_k7j5/tmpkkqna0b8.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s654477037
p02400
u553058997
1487755998
Python
Python3
py
Runtime Error
0
0
77
r = int(input()) print(r ** 2 * 3.141592653589793, r * 2 * 3.141592653589793)
Traceback (most recent call last): File "/tmp/tmpb9xvqiy8/tmpq_j9b57m.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s011348485
p02400
u553058997
1487756529
Python
Python3
py
Runtime Error
0
0
50
r = int(input()) print(r * r * 3.14, r * 2 * 3.14)
Traceback (most recent call last): File "/tmp/tmpiglhp5u5/tmp91y7bu06.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s431107195
p02400
u553058997
1487756571
Python
Python
py
Runtime Error
0
0
53
r = int(raw_input()) print r * r * 3.14, r * 2 * 3.14
File "/tmp/tmph7j25_or/tmpw1skqria.py", line 2 print r * r * 3.14, r * 2 * 3.14 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s343402915
p02400
u553058997
1487756576
Python
Python
py
Runtime Error
0
0
53
r = int(raw_input()) print r * r * 3.14, r * 2 * 3.14
File "/tmp/tmppbf2zeqs/tmp_mad83wy.py", line 2 print r * r * 3.14, r * 2 * 3.14 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s030337841
p02400
u553058997
1487759049
Python
Python
py
Runtime Error
0
0
53
r = int(raw_input()) print r * r * 3.14, r * 2 * 3.14
File "/tmp/tmpmlii952f/tmps0y0sdwg.py", line 2 print r * r * 3.14, r * 2 * 3.14 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s435025769
p02400
u639421643
1488266808
Python
Python3
py
Runtime Error
0
0
99
from math import pi r = int(input()) S = pi * r ** 2 L = 2 * pi * r print("{0} {1}".format(S, L))
Traceback (most recent call last): File "/tmp/tmpx_p7yi33/tmplnzeeing.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s279570538
p02400
u639421643
1488267037
Python
Python3
py
Runtime Error
0
0
99
from math import pi r = int(input()) S = pi * r ** 2 L = 2 * pi * r print("{0} {1}".format(S, L))
Traceback (most recent call last): File "/tmp/tmp_nlid_nb/tmpxiigs015.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s618732865
p02400
u639421643
1488267087
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) S = math.pi * r * r L = 2 * math.pi * r print("{0} {1}".format(S, L))
Traceback (most recent call last): File "/tmp/tmp6onm5iz1/tmprg4jl8sh.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s616287321
p02400
u639421643
1488267168
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/tmp7r0h3h01/tmph67r6sv3.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line