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
s476849028
p02400
u811841526
1449073267
Python
Python3
py
Runtime Error
0
0
110
import math r = int(input()) area = math.pi * r**2 circumference = 2 * math.pi * r print(area, circumference)
Traceback (most recent call last): File "/tmp/tmp9u8m5qwl/tmpzn3slxk7.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s215026120
p02400
u811841526
1449073353
Python
Python3
py
Runtime Error
0
0
110
pi = 3.14159265358979 r = int(input()) area = pi * r**2 circumference = 2 * pi * r print(area, circumference)
Traceback (most recent call last): File "/tmp/tmp_qomhmyd/tmpzudp5i2l.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s699887725
p02400
u982632052
1449239258
Python
Python3
py
Runtime Error
0
0
129
import math r = int(input()) area = math.pi * r ** 2 circumference = 2 * math.pi * r print('{0} {1}'.format(area, circumference))
Traceback (most recent call last): File "/tmp/tmpi54sgyu4/tmpnvoegyck.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s165227974
p02400
u297949443
1449931005
Python
Python
py
Runtime Error
0
0
106
import sys import math r = int(sys.stdin.readline()) print('%.5f %.5f' % (r**2 * math.pi, r*2 * math,pi))
Traceback (most recent call last): File "/tmp/tmp37et0mmj/tmpysj6qi2k.py", line 4, in <module> r = int(sys.stdin.readline()) ^^^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: ''
s685248113
p02400
u297949443
1449931031
Python
Python
py
Runtime Error
0
0
108
import sys import math r = float(sys.stdin.readline()) print('%.5f %.5f' % (r**2 * math.pi, r*2 * math,pi))
Traceback (most recent call last): File "/tmp/tmpmezo3jek/tmpb16vllj_.py", line 4, in <module> r = float(sys.stdin.readline()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ ValueError: could not convert string to float: ''
s576784157
p02400
u003762655
1450365412
Python
Python3
py
Runtime Error
0
0
79
import math r=int(input()) S=r*r*math.pi L=2*r*math.pi print('%.6f %.6f'%(S,L))
Traceback (most recent call last): File "/tmp/tmp5dng23t9/tmphif8wc3m.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s822265348
p02400
u003762655
1450365450
Python
Python3
py
Runtime Error
0
0
79
import math r=int(input()) S=r*r*math.pi L=2*r*math.pi print('%.5f %.5f'%(S,L))
Traceback (most recent call last): File "/tmp/tmprc0qcvbc/tmpl0kbj7jt.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s074430259
p02400
u279955105
1450511612
Python
Python3
py
Runtime Error
0
0
146
import math r = input().split() t = int(r[0]) a = math.pi * t**2 b = 2 * t * math.pi print(str("{0:.10f}".format(a)) + " " + "{0:.10f}".format(b))
Traceback (most recent call last): File "/tmp/tmpkd_6k5lf/tmpfze64jur.py", line 2, in <module> r = input().split() ^^^^^^^ EOFError: EOF when reading a line
s983471403
p02400
u279955105
1450511650
Python
Python3
py
Runtime Error
0
0
144
import math r = input().split() t = int(r[0]) a = math.pi * t**2 b = 2 * t * math.pi print(str("{0:.8f}".format(a)) + " " + "{0:.8f}".format(b))
Traceback (most recent call last): File "/tmp/tmp8e9ulmpm/tmpdp8g7ioo.py", line 2, in <module> r = input().split() ^^^^^^^ EOFError: EOF when reading a line
s656209183
p02400
u995990363
1450880836
Python
Python3
py
Runtime Error
0
0
163
# -*- coding: utf-8 -*- import numpy as np r = float( input() ) area = r * r * np.pi circle = 2 * r * np.pi print(format(area, '.10f'), format(circle, '.10f'))
Traceback (most recent call last): File "/tmp/tmpaau4eopm/tmpwuyxhs85.py", line 5, in <module> r = float( input() ) ^^^^^^^ EOFError: EOF when reading a line
s721959324
p02400
u038005340
1453257380
Python
Python
py
Runtime Error
0
0
100
import math r = int( raw_input() ) S = math.pi * r ** 2 l = 2 * r * math.pi print"%f %f" %(S,l)
File "/tmp/tmpc1l7ftbs/tmpz9s_a8ss.py", line 8 print"%f %f" %(S,l) ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s521401852
p02400
u038005340
1453257388
Python
Python
py
Runtime Error
0
0
101
import math: r = int( raw_input() ) S = math.pi * r ** 2 l = 2 * r * math.pi print"%f %f" %(S,l)
File "/tmp/tmpnaoaq807/tmpowhfg6zt.py", line 1 import math: ^ SyntaxError: invalid syntax
s098167116
p02400
u038005340
1453257406
Python
Python
py
Runtime Error
0
0
103
import math: r = float( raw_input() ) S = math.pi * r ** 2 l = 2 * r * math.pi print"%f %f" %(S,l)
File "/tmp/tmpigb9roci/tmps7alm247.py", line 1 import math: ^ SyntaxError: invalid syntax
s577137743
p02400
u613805578
1453296434
Python
Python
py
Runtime Error
0
0
101
import math pi = math.pi r = raw_input() area = r * r * pi cir = 2 * r *pi print '%f %f' %(area, cir)
File "/tmp/tmpe5bkdds2/tmpllh2df4t.py", line 6 print '%f %f' %(area, cir) ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s593736834
p02400
u613805578
1453296480
Python
Python
py
Runtime Error
0
0
88
import math r = raw_input() area = r * r * pi cir = 2 * r *pi print '%f %f' %(area, cir)
File "/tmp/tmpg4nhu6by/tmpq47r6o8t.py", line 5 print '%f %f' %(area, cir) ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s089551803
p02400
u613805578
1453296504
Python
Python
py
Runtime Error
0
0
93
from import math r = raw_input() area = r * r * pi cir = 2 * r *pi print '%f %f' %(area, cir)
File "/tmp/tmpfvav97z1/tmpc6jhah3z.py", line 1 from import math ^^^^^^ SyntaxError: invalid syntax
s578571969
p02400
u613805578
1453296573
Python
Python
py
Runtime Error
0
0
104
from import math r = raw_input() area = r * r * math.pi cir = 2 * r * math.pi print '%f %f' %(area, cir)
File "/tmp/tmpvxwcrtb5/tmpg5rfuhlt.py", line 1 from import math ^^^^^^ SyntaxError: invalid syntax
s612348117
p02400
u613805578
1453296587
Python
Python
py
Runtime Error
0
0
105
from import math r = raw_input() area = r * r * math.pi cir = 2 * r * math.pi print '%f %f' % (area, cir)
File "/tmp/tmpzu66tsgi/tmp3anc4zb8.py", line 1 from import math ^^^^^^ SyntaxError: invalid syntax
s264373717
p02400
u613805578
1453296592
Python
Python
py
Runtime Error
0
0
100
import math r = raw_input() area = r * r * math.pi cir = 2 * r * math.pi print '%f %f' % (area, cir)
File "/tmp/tmpj016hrqm/tmpswla7e1i.py", line 5 print '%f %f' % (area, cir) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s183008335
p02400
u613805578
1453296714
Python
Python
py
Runtime Error
0
0
112
import math r = raw_input() area = r * r * math.pi * 1.0 cir = 2 * r * math.pi * 1.0 print '%f %f' % (area, cir)
File "/tmp/tmp6n1crmxh/tmpbytnma4z.py", line 5 print '%f %f' % (area, cir) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s345278611
p02400
u724923896
1453305020
Python
Python
py
Runtime Error
0
0
75
r = input() l = 2*pi*r s = r*r*pi print "%.8f %.8f" %(float(l), float(s))
File "/tmp/tmprrqc13je/tmpaofydvem.py", line 6 print "%.8f %.8f" %(float(l), float(s)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s887942880
p02400
u724923896
1453305089
Python
Python
py
Runtime Error
0
0
87
r = input() l = 2*math.pi*r s = r*r*math.pi print "%.8f %.8f" %(float(l), float(s))
File "/tmp/tmp77k7x4lv/tmp3vpex82y.py", line 6 print "%.8f %.8f" %(float(l), float(s)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s097561074
p02400
u724923896
1453305180
Python
Python
py
Runtime Error
0
0
89
r = input() l = 2*math.pi*r s = r*r*math.pi print "%.8f %.8f" %(float(s), float(l))
File "/tmp/tmp5vk2i6j7/tmpc4nwokyj.py", line 6 print "%.8f %.8f" %(float(s), float(l)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s142388639
p02400
u724923896
1453305216
Python
Python
py
Runtime Error
0
0
81
r = float_input() l = 2*math.pi*r s = r*r*math.pi print "%.8f %.8f" %(s, l)
File "/tmp/tmp5qwm_hg4/tmpybb8gsw5.py", line 6 print "%.8f %.8f" %(s, l) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s421838500
p02400
u724923896
1453305253
Python
Python
py
Runtime Error
0
0
84
r = float(input()) l = 2*math.pi*r s = r*r*math.pi print "%.8f %.8f" %(s, l)
File "/tmp/tmp3av7gfk4/tmpyvwd093u.py", line 6 print "%.8f %.8f" %(s, l) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s358133132
p02400
u047737909
1453305913
Python
Python
py
Runtime Error
0
0
95
import math r= map(int, raw_input().split()) a=float(r)*float(r)*?? b=2*float(r)*?? print a,b
File "/tmp/tmpkaobwp72/tmp_wtyjpj_.py", line 5 a=float(r)*float(r)*?? ^ SyntaxError: invalid syntax
s350001320
p02400
u047737909
1453306033
Python
Python
py
Runtime Error
0
0
105
import math r= map(int, raw_input().split()) a=float(r)*float(r)*math.pi b=2*float(r)*math.pi print a,b
File "/tmp/tmpedjo41wl/tmpt39g6998.py", line 7 print a,b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s041062349
p02400
u047737909
1453306273
Python
Python
py
Runtime Error
0
0
57
r=input() a=r*r*math.pi b=2*r*math.pi print "%f %f"%(a,b)
File "/tmp/tmpwotnkcee/tmp5pvwzbnj.py", line 4 print "%f %f"%(a,b) ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s338145854
p02400
u885889402
1453364652
Python
Python3
py
Runtime Error
0
0
98
import math a=int(input()) L = 2*math.pi*a s = a*a*math.pi print(???%.6f???%(L),???%.6f???%(s))
File "/tmp/tmpr0b7ipi6/tmp2zc11521.py", line 8 print(???%.6f???%(L),???%.6f???%(s)) ^ SyntaxError: invalid decimal literal
s238562716
p02400
u885889402
1453364771
Python
Python3
py
Runtime Error
0
0
90
import math a=int(input()) L = 2*math.pi*a s = a*a*math.pi print("%.6f"%(L),"%.6f"%(s))
Traceback (most recent call last): File "/tmp/tmp6gwydmcb/tmppuib7hq4.py", line 3, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s698753960
p02400
u078762447
1453374168
Python
Python
py
Runtime Error
0
0
81
r = int(raw_input()) pi = 3.14159265358 s = r * r * pi l = 2 * r * pi print s,r
File "/tmp/tmpclnkp9sh/tmpj16ffyqz.py", line 7 print s,r ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s517769769
p02400
u078762447
1453374209
Python
Python
py
Runtime Error
0
0
81
r = int(raw_input()) pi = 3.14159265358 s = r * r * pi l = 2 * r * pi print s,l
File "/tmp/tmpgryze63a/tmpyawafp8p.py", line 7 print s,l ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s094308928
p02400
u078762447
1453374244
Python
Python
py
Runtime Error
0
0
81
r = int(raw_input()) pi = 3.14159265358 s = r * r * pi l = 2 * r * pi print s,l
File "/tmp/tmph8f2oxpr/tmpv9y22gfp.py", line 7 print s,l ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s694320112
p02400
u828153094
1453398850
Python
Python
py
Runtime Error
0
0
81
r = int(raw_input()) p = 3.141592 print p * float(r)**2, print 2.0 * p * float(r)
File "/tmp/tmpkzaz58a_/tmppsfgdg2i.py", line 3 print p * float(r)**2, ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s305371136
p02400
u619765879
1453441108
Python
Python
py
Runtime Error
0
0
51
r = float(input()) print '%f %f' % (2*pi*r, pi*r^2)
File "/tmp/tmpxpcg3wkx/tmpi5l9p6cn.py", line 2 print '%f %f' % (2*pi*r, pi*r^2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s441875581
p02400
u619765879
1453441155
Python
Python
py
Runtime Error
0
0
61
r = float(input()) print '%f %f' % (2*math.pi*r, math.pi*r^2)
File "/tmp/tmp0azfgfin/tmpco9vj9_c.py", line 2 print '%f %f' % (2*math.pi*r, math.pi*r^2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s766167272
p02400
u619765879
1453441175
Python
Python
py
Runtime Error
0
0
54
r = input() print '%f %f' % (2*math.pi*r, math.pi*r^2)
File "/tmp/tmp4xxws54t/tmp3my2cvzn.py", line 2 print '%f %f' % (2*math.pi*r, math.pi*r^2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s752806099
p02400
u619765879
1453441209
Python
Python
py
Runtime Error
0
0
73
import math r = float(input()) print '%f %f' % (2*math.pi*r, math.pi*r^2)
File "/tmp/tmpqf5ahsyw/tmp5jd4h5vy.py", line 3 print '%f %f' % (2*math.pi*r, math.pi*r^2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s823721188
p02400
u619765879
1453441266
Python
Python
py
Runtime Error
0
0
73
import math r = float(input()) print '%f %f' % (2*math.pi*r, math.pi*r^2)
File "/tmp/tmpyzs0rxhl/tmp69nli7wu.py", line 3 print '%f %f' % (2*math.pi*r, math.pi*r^2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s585574788
p02400
u619765879
1453441299
Python
Python
py
Runtime Error
0
0
61
r = float(input()) print '%f %f' % (2*math.pi*r, math.pi*r^2)
File "/tmp/tmpe87zusac/tmp6ap3dj5b.py", line 2 print '%f %f' % (2*math.pi*r, math.pi*r^2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s230480417
p02400
u619765879
1453441381
Python
Python
py
Runtime Error
0
0
75
r = float(input()) print '%f %f' % (2*3.141592653589*r, 3.141592653589*r^2)
File "/tmp/tmp1g_ja1kr/tmpcwnmwu8c.py", line 2 print '%f %f' % (2*3.141592653589*r, 3.141592653589*r^2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s577744818
p02400
u619765879
1453441491
Python
Python
py
Runtime Error
0
0
61
r = float(input()) print '%f %f' % (2*math.pi*r, math.pi*r*r)
File "/tmp/tmphtodor8f/tmphikxojdw.py", line 2 print '%f %f' % (2*math.pi*r, math.pi*r*r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s960681425
p02400
u619765879
1453441909
Python
Python
py
Runtime Error
0
0
63
r = float(input()) print '%.5f %.5f' % (2*math.pi*r, math.pi*r)
File "/tmp/tmpi7kzkqdi/tmpn9zglwh5.py", line 2 print '%.5f %.5f' % (2*math.pi*r, math.pi*r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s203360658
p02400
u619765879
1453446746
Python
Python
py
Runtime Error
0
0
53
r = float(input()) print '%f %f' % (math.pi, math.pi)
File "/tmp/tmpsi0dc7d1/tmpgstsrntq.py", line 2 print '%f %f' % (math.pi, math.pi) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s558194028
p02400
u619765879
1453446760
Python
Python
py
Runtime Error
0
0
43
r = float(input()) print '%f %f' % (pi, pi)
File "/tmp/tmpzav56t2t/tmpmgr1e17d.py", line 2 print '%f %f' % (pi, pi) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s042307007
p02400
u619765879
1453446783
Python
Python
py
Runtime Error
0
0
55
import math r = float(input()) print '%f %f' % (pi, pi)
File "/tmp/tmpcrqifeib/tmp4_t46oaa.py", line 3 print '%f %f' % (pi, pi) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s131899542
p02400
u619765879
1453446832
Python
Python
py
Runtime Error
0
0
73
import math r = float(input()) print '%f %f' % (2*math.pi*r, math.pi*r^2)
File "/tmp/tmpmp8bvok4/tmppmc738q0.py", line 3 print '%f %f' % (2*math.pi*r, math.pi*r^2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s242840302
p02400
u619765879
1453446903
Python
Python
py
Runtime Error
0
0
73
import math r = float(input()) print '%f %f' % (math.pi*r^2, 2*math.pi*r)
File "/tmp/tmpv8getto5/tmpbvkm076_.py", line 3 print '%f %f' % (math.pi*r^2, 2*math.pi*r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s321755045
p02400
u020577611
1453547582
Python
Python
py
Runtime Error
0
0
85
import math k=int(raw_input()) s=k*k*math.pi t=2*k*math.pi print "%.6f %.6f"%(s,t)
File "/tmp/tmpjc6quyby/tmpfycloo42.py", line 8 print "%.6f %.6f"%(s,t) ^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s638142815
p02400
u020577611
1453547621
Python
Python
py
Runtime Error
0
0
85
import math k=int(raw_input()) s=k*k*math.pi t=2*k*math.pi print "%.6f %.6f"%(s,t)
File "/tmp/tmpkf41oqc7/tmpbzq640ga.py", line 8 print "%.6f %.6f"%(s,t) ^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s142966567
p02400
u967035362
1453553845
Python
Python
py
Runtime Error
0
0
58
import ans1 import ans2 r = float(ans1.stdin.readline())
Traceback (most recent call last): File "/tmp/tmpsd178q4z/tmpycu_rx00.py", line 1, in <module> import ans1 ModuleNotFoundError: No module named 'ans1'
s992869513
p02400
u967035362
1453553853
Python
Python
py
Runtime Error
0
0
58
import ans1 import ans2 r = float(ans1.stdin.readline())
Traceback (most recent call last): File "/tmp/tmpv2szpyj8/tmpc6u8j9p2.py", line 1, in <module> import ans1 ModuleNotFoundError: No module named 'ans1'
s743809385
p02400
u967035362
1453553871
Python
Python
py
Runtime Error
0
0
111
import ans1 import ans2 r = float(ans1.stdin.readline()) print('%.5f %.5f' % (r**2 * ans2.pi, r*2 * ans2.pi))
Traceback (most recent call last): File "/tmp/tmpb8hgd9cv/tmp6gymqj99.py", line 1, in <module> import ans1 ModuleNotFoundError: No module named 'ans1'
s211242436
p02400
u824204304
1453712784
Python
Python
py
Runtime Error
0
0
103
def sircle(): r = raw_input() r = int(r) a = r*r*3.141592 b = 2 * r 3.141592 print "a b"
File "/tmp/tmppygx0yly/tmph5tnlq5y.py", line 5 b = 2 * r 3.141592 ^^^^^^^^ SyntaxError: invalid syntax
s618191985
p02400
u824204304
1453712797
Python
Python
py
Runtime Error
0
0
90
r = raw_input() r = int(r) a = r*r*3.141592 b = 2 * r 3.141592 print "a b"
File "/tmp/tmpf7d3t9mq/tmpl98ijqy2.py", line 2 r = raw_input() IndentationError: unexpected indent
s539240004
p02400
u824204304
1453713029
Python
Python
py
Runtime Error
0
0
94
r = raw_input() r = float(r) a = r*r*3.141592653 b = 2 * r 3.141592653 print "%.9f %.9f"%(a,b)
File "/tmp/tmp4dejfn2o/tmptf55hzk2.py", line 4 b = 2 * r 3.141592653 ^^^^^^^^^^^ SyntaxError: invalid syntax
s067193062
p02400
u119456964
1453778258
Python
Python
py
Runtime Error
0
0
75
import math r = int(raw_input()) print '%f %f' %(r*r*math.pi, 2*r*math.pi)
File "/tmp/tmpt3vmztr8/tmp14rd76ux.py", line 4 print '%f %f' %(r*r*math.pi, 2*r*math.pi) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s646135322
p02400
u119456964
1453779975
Python
Python
py
Runtime Error
0
0
94
import math r = int(raw_input()) V = r*r*math.pi S = 2*r*math.pi print '{0} {1}'.format(V, S)
File "/tmp/tmpm7suh5_s/tmps8lwn06k.py", line 6 print '{0} {1}'.format(V, S) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s004031931
p02400
u119456964
1453780099
Python
Python
py
Runtime Error
0
0
87
import math r = int(raw_input()) V = r*r*math.pi S = 2*r*math.pi print '%f %f' %(V, S)
File "/tmp/tmp6mx7ng9b/tmp_o7ft9bl.py", line 6 print '%f %f' %(V, S) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s073536061
p02400
u119456964
1453780504
Python
Python
py
Runtime Error
0
0
87
import math r = int(raw_input()) V = r*r*math.pi S = 2*r*math.pi print '%f %f' %(V, S)
File "/tmp/tmpy1q9lu5v/tmpc91rt4yh.py", line 6 print '%f %f' %(V, S) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s278124400
p02400
u177295149
1453791799
Python
Python
py
Runtime Error
0
0
55
r = raw_input() print"math.pi*2*%d math.pi*r**2" % (r)
File "/tmp/tmp7ylpj58v/tmp09fyivsx.py", line 3 print"math.pi*2*%d math.pi*r**2" % (r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s781362456
p02400
u177295149
1453791908
Python
Python
py
Runtime Error
0
0
79
r = raw_input() l = float(math.pi)*2*r s =float(math.pi)*r**2 print'l s' % (r)
File "/tmp/tmpqqtks14w/tmpfqvpou2_.py", line 4 print'l s' % (r) ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s317598372
p02400
u177295149
1453792711
Python
Python
py
Runtime Error
0
0
92
import math r = raw_input() l = float(math.pi)*2*r s =float(math.pi)*r**2 print'l s' % (r)
File "/tmp/tmpivzk_o64/tmpfdfaxru0.py", line 6 print'l s' % (r) ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s668733374
p02400
u177295149
1453792715
Python
Python
py
Runtime Error
0
0
92
import math r = raw_input() l = float(math.pi)*2*r s =float(math.pi)*r**2 print'l s' % (r)
File "/tmp/tmpkxb3pqik/tmpcalo3b6p.py", line 6 print'l s' % (r) ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s046761089
p02400
u177295149
1453792744
Python
Python
py
Runtime Error
0
0
92
import math r = raw_input() l = float(math.pi)*2*r s =float(math.pi)*r**2 print'l s' % (r)
File "/tmp/tmpd5wbb9zh/tmpfmsa02ua.py", line 6 print'l s' % (r) ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s018201573
p02400
u177295149
1453792773
Python
Python
py
Runtime Error
0
0
74
import math r = raw_input() l = math.pi*2*r s = math.pi*r**2 print'l s'
File "/tmp/tmpzistcufz/tmp2mh7twmy.py", line 6 print'l s' ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s996063454
p02400
u177295149
1453792801
Python
Python
py
Runtime Error
0
0
85
import math r = raw_input() l = math.pi*2*r s = math.pi*r**2 print'%f %f' % (l, s)
File "/tmp/tmp4qn6qnv3/tmp6t9oi8sw.py", line 6 print'%f %f' % (l, s) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s806030112
p02400
u177295149
1453792993
Python
Python
py
Runtime Error
0
0
92
from math import * r = raw_input() l = math.pi*2*r s = math.pi*r**2 print'%f %f' % (l, s)
File "/tmp/tmpdl38e8xp/tmpo3z19y1u.py", line 6 print'%f %f' % (l, s) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s908263626
p02400
u177295149
1453793032
Python
Python
py
Runtime Error
0
0
90
import math r = int(raw_input()) l = math.pi*2*r s = math.pi*r**2 print'%f %f' % (s, l)
File "/tmp/tmp4a4o9rf_/tmplkmqdj6s.py", line 6 print'%f %f' % (s, l) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s824408670
p02400
u177295149
1453793054
Python
Python
py
Runtime Error
0
0
89
import math r = int(raw_input()) l = math.pi*2*r s = math.pi*r*r print'%f %f' % (s, l)
File "/tmp/tmplbv_6fqt/tmp_qa7yaa3.py", line 6 print'%f %f' % (s, l) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s129020002
p02400
u233232390
1453811705
Python
Python
py
Runtime Error
0
0
74
import math r = raw_input() print "%.4f %.4f" %(r*r*math.pi , r*2*math.pi)
File "/tmp/tmpo1wqlkud/tmpwsc2agfa.py", line 3 print "%.4f %.4f" %(r*r*math.pi , r*2*math.pi) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s077303749
p02400
u920118302
1453812200
Python
Python3
py
Runtime Error
0
0
82
import math r = int(input()) S = math.pi * r**2 L = 2 * math.pi * r print(S, L)
Traceback (most recent call last): File "/tmp/tmpfug5tzg9/tmpu9_j0vc3.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s708452734
p02400
u920118302
1453812351
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) S = math.pi * r**2 L = 2 * math.pi * r print("%.6f"% S, "%.6f"% L)
Traceback (most recent call last): File "/tmp/tmpjgnbg014/tmphammndrp.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s142522370
p02400
u393769849
1453813208
Python
Python
py
Runtime Error
0
0
75
import math r = import() print ("%f.6 %f.6" % (math.pi*r*r, math.2*pi*r))
File "/tmp/tmpcr28u3y5/tmp_isb_5aa.py", line 3 r = import() ^^^^^^ SyntaxError: invalid syntax
s305074744
p02400
u393769849
1453813230
Python
Python
py
Runtime Error
0
0
71
import math r = import() print ("%f %f" % (math.pi*r*r, math.2*pi*r))
File "/tmp/tmp730jhnyf/tmpb5l17e9_.py", line 3 r = import() ^^^^^^ SyntaxError: invalid syntax
s539151654
p02400
u393769849
1453813253
Python
Python
py
Runtime Error
0
0
71
import math r = import() print ("%f %f" % (math.pi*r*r, 2*math.pi*r))
File "/tmp/tmpe8fbaem_/tmpvkz69hag.py", line 3 r = import() ^^^^^^ SyntaxError: invalid syntax
s049633544
p02400
u393769849
1453813310
Python
Python
py
Runtime Error
0
0
78
import math r = imput() print ("%f %f" % (math.pi * r * r, 2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmpd1gr828x/tmpb71rbs3_.py", line 3, in <module> r = imput() ^^^^^ NameError: name 'imput' is not defined. Did you mean: 'input'?
s191791251
p02400
u393769849
1453813347
Python
Python
py
Runtime Error
0
0
77
import math r = imput() print("%f %f" % (math.pi * r * r, 2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmp8tdw9xiq/tmp_s1e1lwo.py", line 3, in <module> r = imput() ^^^^^ NameError: name 'imput' is not defined. Did you mean: 'input'?
s613676219
p02400
u393769849
1453813363
Python
Python
py
Runtime Error
0
0
78
import math r = imput() print("%f %f" % (math.pi * r ** 2, 2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmp2qx3rcq5/tmpwe5n8pp6.py", line 3, in <module> r = imput() ^^^^^ NameError: name 'imput' is not defined. Did you mean: 'input'?
s313547179
p02400
u803327846
1453820282
Python
Python
py
Runtime Error
0
0
89
import math r = float(raw_input()) S = r ** 2 * pi R = 2 * r * pi print "%f %f" %(S,R)
File "/tmp/tmp4zwn948g/tmp1nlet90o.py", line 8 print "%f %f" %(S,R) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s062357362
p02400
u731710433
1454335746
Python
Python3
py
Runtime Error
0
0
73
import math r = int(input()) print((r * r * math.pi), (2 * r * math.pi))
Traceback (most recent call last): File "/tmp/tmpj5ozk48p/tmpmis7osif.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s904045724
p02400
u682357930
1454410500
Python
Python
py
Runtime Error
0
0
46
import.math r = input() print pi*r*r, 2*pi*r
File "/tmp/tmpk_jb0qy8/tmpzqnlhtz2.py", line 1 import.math ^ SyntaxError: invalid syntax
s757512571
p02400
u682357930
1454410978
Python
Python3
py
Runtime Error
0
0
61
import math r = input() s = pi*r*r l = 2.0*pi*r print(s,l)
Traceback (most recent call last): File "/tmp/tmpav5cnqo0/tmpx1mr0y80.py", line 3, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s254680243
p02400
u682357930
1454410992
Python
Python3
py
Runtime Error
0
0
67
import math r = eval(input()) s = pi*r*r l = 2.0*pi*r print(s,l)
Traceback (most recent call last): File "/tmp/tmps1zl0rh7/tmptmxc7uyt.py", line 3, in <module> r = eval(input()) ^^^^^^^ EOFError: EOF when reading a line
s769287359
p02400
u682357930
1454411016
Python
Python3
py
Runtime Error
0
0
55
import math r = input() s = r*r l = 2.0*r print(s,l)
Traceback (most recent call last): File "/tmp/tmpt9btjhyt/tmpfjnvz7i0.py", line 3, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s672004937
p02400
u682357930
1454411026
Python
Python3
py
Runtime Error
0
0
42
r = input() s = r*r l = 2.0*r print(s,l)
Traceback (most recent call last): File "/tmp/tmpfruk4cwr/tmp09iaycs3.py", line 1, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s806662844
p02400
u682357930
1454419476
Python
Python
py
Runtime Error
0
0
70
import math r = int(raw_input()) s = pi*r*r l = 2.0*pi*r print s, r
File "/tmp/tmp9wauv2vt/tmp2lhksftw.py", line 8 print s, r ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s798076845
p02400
u682357930
1454419538
Python
Python
py
Runtime Error
0
0
67
r = int(raw_input()) s = math.pi*r*r l = 2.0*math.pi*r print s, l
File "/tmp/tmpg4p2b9hz/tmpdhl9t8_u.py", line 6 print s, l ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s591256112
p02400
u682357930
1454419557
Python
Python
py
Runtime Error
0
0
67
r = (int)raw_input() s = math.pi*r*r l = 2.0*math.pi*r print s, l
File "/tmp/tmp9arwiznj/tmpuv34n98k.py", line 1 r = (int)raw_input() ^^^^^^^^^ SyntaxError: invalid syntax
s328295374
p02400
u682357930
1454419573
Python
Python
py
Runtime Error
0
0
61
r = (int)raw_input() s = 3.14*r*r l = 2.0*3.14*r print s, l
File "/tmp/tmpbkx64oxb/tmpwr268dy8.py", line 1 r = (int)raw_input() ^^^^^^^^^ SyntaxError: invalid syntax
s723767951
p02400
u682357930
1454419648
Python
Python
py
Runtime Error
0
0
76
r = map(float, raw_input().split()) s = 3.14*r*r l = 2.0*3.14*r print s, l
File "/tmp/tmpm8hdpt91/tmpz6zg9fjj.py", line 6 print s, l ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s206409303
p02400
u682357930
1454419701
Python
Python
py
Runtime Error
0
0
34
r = (float)raw_input() print r, r
File "/tmp/tmp29paxtlc/tmp8uwklwcw.py", line 1 r = (float)raw_input() ^^^^^^^^^ SyntaxError: invalid syntax
s075771053
p02400
u682357930
1454419961
Python
Python
py
Runtime Error
0
0
76
r = (float)input() pi = 3.141592 s = pi * r * r l = 2.0 * pi * r print s, l
File "/tmp/tmpfdeq3htc/tmp5aohzfda.py", line 1 r = (float)input() ^^^^^ SyntaxError: invalid syntax
s630696572
p02400
u682357930
1454420221
Python
Python
py
Runtime Error
0
0
91
r = input() pi = 3.14159265359 s = pi * Decimal(r)**2 l = 2.0 * pi * Decimal(r) print s, l
File "/tmp/tmpi2p5b8r7/tmp0yjk_1fc.py", line 6 print s, l ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s384707888
p02400
u682357930
1454420240
Python
Python
py
Runtime Error
0
0
91
r = input() pi = 3.14159265359 s = pi * decimal(r)**2 l = 2.0 * pi * decimal(r) print s, l
File "/tmp/tmpk3ma4t7g/tmpx2k6vyso.py", line 6 print s, l ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s892214162
p02400
u682357930
1454420348
Python
Python
py
Runtime Error
0
0
73
import math r = input() s = math.pi * r**2 l = 2.0 * pi * r print s, l
File "/tmp/tmp7rkabgle/tmpjt0y66t7.py", line 8 print s, l ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s986507221
p02400
u974554153
1454420704
Python
Python
py
Runtime Error
0
0
73
r=map(int,raw_input().split()) print ('%f %f' % (float2*??*r,floatr*r*??)
File "/tmp/tmpk1bp3tm2/tmpcdrs0yc5.py", line 2 print ('%f %f' % (float2*??*r,floatr*r*??) ^ SyntaxError: invalid syntax
s025402596
p02400
u974554153
1454420776
Python
Python
py
Runtime Error
0
0
75
r=map(int,raw_input().split()) print ('%f %f' (float2*M_PI*r,floatr*r*M_PI)
File "/tmp/tmpz1cnllsr/tmps6i56qgr.py", line 2 print ('%f %f' (float2*M_PI*r,floatr*r*M_PI) ^ SyntaxError: '(' was never closed
s121077146
p02400
u974554153
1454420804
Python
Python
py
Runtime Error
0
0
79
r=map(int,raw_input().split()) print ('%f %f' (float(2*M_PI*r),float(r*r*M_PI))
File "/tmp/tmpv9g02rz6/tmpw2q405pn.py", line 2 print ('%f %f' (float(2*M_PI*r),float(r*r*M_PI)) ^ SyntaxError: '(' was never closed
s121565775
p02400
u279955105
1454747359
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) a = math.pi * r**2 b = math.pi * r * 2 print(str(a) + " " + str(b))
Traceback (most recent call last): File "/tmp/tmpfi4ldrcb/tmpg9nuzxgv.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line