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
s931117987
p02400
u279955105
1454747487
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/tmp321s2nq1/tmppq325umy.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s666920053
p02400
u436807165
1455150794
Python
Python
py
Runtime Error
0
0
64
import math r = input() print "%f, %f"math.pi*(r**2),2*r*math.pi
File "/tmp/tmpjp04fbm9/tmp8ocbsl7s.py", line 3 print "%f, %f"math.pi*(r**2),2*r*math.pi ^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s467845539
p02400
u605879293
1456312386
Python
Python3
py
Runtime Error
0
0
82
pi = 3.14159265 r = int(input()) print(round(r * r * pi, 6), round(2 * pi * r, 6))
Traceback (most recent call last): File "/tmp/tmpk8kknlo9/tmpjj0c88sl.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s117268454
p02400
u605879293
1456312804
Python
Python3
py
Runtime Error
0
0
89
from numpy import pi r = float(input()) print(round(r * r * pi, 7), round(2 * pi * r, 7))
Traceback (most recent call last): File "/tmp/tmp68og3p2v/tmprawbq9a7.py", line 2, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s975809848
p02400
u605879293
1456312939
Python
Python3
py
Runtime Error
0
0
89
from numpy import pi r = float(input()) print(round(r * r * pi, 7), round(2 * pi * r, 7))
Traceback (most recent call last): File "/tmp/tmpknp5fww8/tmpin2393de.py", line 2, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s013078176
p02400
u653239976
1456846330
Python
Python
py
Runtime Error
0
0
120
#coding: UTF-8 l = raw_input() r = int(l) import math S = math.pi * r**2 C = 2 * math.pi * r print "%f %f" %(S, C)
File "/tmp/tmpkkdtgq76/tmpz31q1olr.py", line 13 print "%f %f" %(S, C) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s689346204
p02400
u075836834
1457349812
Python
Python3
py
Runtime Error
0
0
74
import math r = int(input()) print("%.6f %.6f"%(r*r*math.pi,2*r*math.pi))
Traceback (most recent call last): File "/tmp/tmp1v6flfrm/tmpqvsu_kmk.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s037136316
p02400
u313796116
1457833205
Python
Python3
py
Runtime Error
0
0
60
import math;r=int(input());print(math.pi*(r**2),2*math.pi*r)
Traceback (most recent call last): File "/tmp/tmp4ix5ngeh/tmprs0g0jgo.py", line 1, in <module> import math;r=int(input());print(math.pi*(r**2),2*math.pi*r) ^^^^^^^ EOFError: EOF when reading a line
s498826324
p02400
u994049982
1458664495
Python
Python
py
Runtime Error
0
0
76
a=input() p=3.141592653589793 print(str(float(p*a**2)+" "+str(float(2*p*a)))
File "/tmp/tmpi038j4ww/tmpk01mvggw.py", line 3 print(str(float(p*a**2)+" "+str(float(2*p*a))) ^ SyntaxError: '(' was never closed
s664326603
p02400
u869301406
1459152606
Python
Python
py
Runtime Error
0
0
72
import numpy as np r = input() a = r**2*np.pi b = r*2*np.pi print a,b
File "/tmp/tmp8doeiwr8/tmppojk_tou.py", line 8 print a,b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s047215727
p02400
u869301406
1459152711
Python
Python
py
Runtime Error
0
0
72
import numpy as np r = input() a = r**2*np.pi b = r*2*np.pi print a,b
File "/tmp/tmp66oibxge/tmpu19d8h3d.py", line 8 print a,b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s391998091
p02400
u463783070
1459325953
Python
Python3
py
Runtime Error
0
0
97
r = map(int,input().split()) print (format(r**r*3.14159265, '.6f'),format(r*r*3.14159265, '.6f'))
Traceback (most recent call last): File "/tmp/tmpv8ut0qcw/tmpctl01i8g.py", line 1, in <module> r = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s160201333
p02400
u463783070
1459326400
Python
Python3
py
Runtime Error
0
0
93
from math import pi r = float(input()) print (format(r**r*pi, ':.6f'),format(r*r*pi, ':.6f'))
Traceback (most recent call last): File "/tmp/tmp9gw751id/tmpegmrx8z8.py", line 2, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s084080625
p02400
u463783070
1459326684
Python
Python3
py
Runtime Error
0
0
93
from math import pi r = float(input()) print (format(r**2*pi, ':.6f'),format(r*pi*2, ':.6f'))
Traceback (most recent call last): File "/tmp/tmpybrv9eha/tmp9z5m4bhf.py", line 2, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s989645131
p02400
u237991875
1459333180
Python
Python
py
Runtime Error
0
0
72
import math n = int(raw_input()) print n * n * math.pi, 2 * n * math.pi
File "/tmp/tmpbgyd6pf4/tmpf8ql6kpv.py", line 4 print n * n * math.pi, 2 * n * math.pi ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s244418010
p02400
u130979865
1459556181
Python
Python
py
Runtime Error
0
0
90
# -*- coding: utf-8 -*- import math r = input() print "%f %f" %(r*r*math.pi, 2*r*mat.pi)
File "/tmp/tmpb8492736/tmp68qucf_a.py", line 6 print "%f %f" %(r*r*math.pi, 2*r*mat.pi) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s790456654
p02400
u130979865
1459556277
Python
Python
py
Runtime Error
0
0
101
# -*- coding: utf-8 -*- import math r = float(raw_input()) print "%f %f" %(r*r*math.pi, 2*r*mat.pi)
File "/tmp/tmpnmwxmt4o/tmp2ulwpvsz.py", line 6 print "%f %f" %(r*r*math.pi, 2*r*mat.pi) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s141955657
p02400
u402330988
1459741053
Python
Python3
py
Runtime Error
0
0
161
# encoding:utf-8 import math as ma # math.pi x = int(input()) pi = (x * x) * ma.pi # Circumference pi_line = x * ma.pi print("{0:f} {1:f}".format(pi,pi_line))
Traceback (most recent call last): File "/tmp/tmptepzoi58/tmpfqapsrql.py", line 4, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s395542744
p02400
u226888928
1460679331
Python
Python3
py
Runtime Error
0
0
83
import math r=int(input()) print('{0:.5f} {1:.5f}'.format(math.pi*r*r,math.pi*r*2))
Traceback (most recent call last): File "/tmp/tmpsu35xybw/tmp1x3nz6s5.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s348854310
p02400
u226888928
1460679428
Python
Python3
py
Runtime Error
0
0
86
import math r=double(input()) print('{0:.5f} {1:.5f}'.format(math.pi*r*r,math.pi*r*2))
Traceback (most recent call last): File "/tmp/tmpj6pnw39e/tmp535n4lw9.py", line 2, in <module> r=double(input()) ^^^^^^ NameError: name 'double' is not defined
s615756620
p02400
u332767892
1460947601
Python
Python
py
Runtime Error
0
0
206
import math class Circle: def output(self, r): print "%.6f %.6f" % (math.pi * r * r, 2.0 * math.pi * r) if __name__ == "__main__": cir = Circle() r = int(raw_input()) cir.output(r)
File "/tmp/tmp56uayyv1/tmpum9cr0d8.py", line 5 print "%.6f %.6f" % (math.pi * r * r, 2.0 * math.pi * r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s338486815
p02400
u332767892
1460949171
Python
Python
py
Runtime Error
0
0
217
import sys import math class Circle: def output(self, r): print "%.6f %.6f" % (math.pi * r * r, 2.0 * math.pi * r) if __name__ == "__main__": cir = Circle() r = int(raw_input()) cir.output(r)
File "/tmp/tmpn96u1ndj/tmpm7v2_llc.py", line 6 print "%.6f %.6f" % (math.pi * r * r, 2.0 * math.pi * r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s200750606
p02400
u077284614
1461238842
Python
Python3
py
Runtime Error
0
0
89
r = (int)input().split() import math d = r * r * math.pi l = 2 * r * math.pi print("d l")
File "/tmp/tmpua3sz_tt/tmpnk7w00_n.py", line 1 r = (int)input().split() ^^^^^ SyntaxError: invalid syntax
s114271031
p02400
u077284614
1461238865
Python
Python3
py
Runtime Error
0
0
98
r = (int)input().split() import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
File "/tmp/tmp8zvd37q8/tmp9eh5a5z1.py", line 1 r = (int)input().split() ^^^^^ SyntaxError: invalid syntax
s490561896
p02400
u077284614
1461238954
Python
Python3
py
Runtime Error
0
0
101
r = (double)input().split() import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
File "/tmp/tmpf971x4wj/tmpmc5o8ta0.py", line 1 r = (double)input().split() ^^^^^ SyntaxError: invalid syntax
s619097663
p02400
u077284614
1461238996
Python
Python3
py
Runtime Error
0
0
93
r = input().split() import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
Traceback (most recent call last): File "/tmp/tmp298_tps2/tmpv8sryzzb.py", line 1, in <module> r = input().split() ^^^^^^^ EOFError: EOF when reading a line
s963725129
p02400
u077284614
1461239016
Python
Python3
py
Runtime Error
0
0
85
r = input() import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
Traceback (most recent call last): File "/tmp/tmpliml9tcf/tmp1aw3zm8l.py", line 1, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s643719835
p02400
u077284614
1461239027
Python
Python3
py
Runtime Error
0
0
93
r = (double)input() import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
File "/tmp/tmpymhi_f2a/tmp42xxxng5.py", line 1 r = (double)input() ^^^^^ SyntaxError: invalid syntax
s171551751
p02400
u077284614
1461239111
Python
Python3
py
Runtime Error
0
0
90
r = (int)input() import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
File "/tmp/tmpsnjfz1m2/tmppng0s85l.py", line 1 r = (int)input() ^^^^^ SyntaxError: invalid syntax
s096725152
p02400
u077284614
1461239218
Python
Python3
py
Runtime Error
0
0
90
r = int(input()) import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
Traceback (most recent call last): File "/tmp/tmpytk5oki7/tmpwyxv8ow_.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s406399595
p02400
u077284614
1461239237
Python
Python3
py
Runtime Error
0
0
90
r = int(input()) import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
Traceback (most recent call last): File "/tmp/tmpgwkvti2x/tmpjkay7rgv.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s836906631
p02400
u077284614
1461239253
Python
Python3
py
Runtime Error
0
0
93
r = double(input()) import math d = r * r * math.pi l = 2 * r * math.pi print("%f %f" %(d,l))
Traceback (most recent call last): File "/tmp/tmpcu8sphqe/tmphvg_efw6.py", line 1, in <module> r = double(input()) ^^^^^^ NameError: name 'double' is not defined
s387955146
p02400
u791170614
1461525977
Python
Python3
py
Runtime Error
0
0
97
r = int(input()) men = (r**2) / 3.141592 sen = (r * 2) / 3.141592 print('%.6f %.6f' % (men,sen))
Traceback (most recent call last): File "/tmp/tmpgiruprx1/tmp722_8kiw.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s692249437
p02400
u791170614
1461526377
Python
Python3
py
Runtime Error
0
0
109
import math r = int(input()) PI = math.pi men = (r**2) * PI sen = (r * 2) * PI print('%.6f %.6f' % (men,sen))
Traceback (most recent call last): File "/tmp/tmprwit9iu5/tmp06zjbhrf.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s394243134
p02400
u791170614
1461526573
Python
Python3
py
Runtime Error
0
0
109
import math r = int(input()) PI = math.pi men = (r**2) * PI sen = (r * 2) * PI print('%.6f %.6f' % (men,sen))
Traceback (most recent call last): File "/tmp/tmpx6gtmw3e/tmpfo6rg57w.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s614529702
p02400
u791170614
1461526638
Python
Python3
py
Runtime Error
0
0
109
import math r = int(input()) PI = math.pi men = (r**2) * PI sen = (r + r) * PI print('%.6f %.6f' % (men,sen))
Traceback (most recent call last): File "/tmp/tmpvdoyosm0/tmp2jvaynj5.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s288420508
p02400
u791170614
1461529694
Python
Python3
py
Runtime Error
0
0
106
import math PI = math.pi r = int(input()) men = r**2 * PI sen = r*2 * PI print('%.6f %.6f' % (men, sen))
Traceback (most recent call last): File "/tmp/tmpy6vjv1zb/tmpwz97yhc6.py", line 4, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s973517558
p02400
u791170614
1461529726
Python
Python
py
Runtime Error
0
0
110
import math PI = math.pi r = int(row_input()) men = r**2 * PI sen = r*2 * PI print('%.6f %.6f' % (men, sen))
Traceback (most recent call last): File "/tmp/tmpv57igcoi/tmp0dm3p9yx.py", line 4, in <module> r = int(row_input()) ^^^^^^^^^ NameError: name 'row_input' is not defined
s429586361
p02400
u791170614
1461529933
Python
Python3
py
Runtime Error
0
0
105
import math PI = math.pi r = int(input()) men = r*r * PI sen = r*2 * PI print('%.6f %.6f' % (men, sen))
Traceback (most recent call last): File "/tmp/tmpfcrjecqa/tmpx210rog_.py", line 4, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s616443099
p02400
u617990214
1462015099
Python
Python
py
Runtime Error
0
0
98
from math import * m=1000000 r_=m*float(input()) S=(pi*r_**2)/(m**2) l=(2*pi*r)/m print S, print l
File "/tmp/tmpy8cso5d0/tmpthk8qzyg.py", line 6 print S, ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s507166157
p02400
u617990214
1462016353
Python
Python
py
Runtime Error
0
0
103
pi=3.14159265358979324 m=2**1000 r_=m*float(input()) S=(pi*r_**2)/(m**2) l=(2*pi*r_)/m print S, print l
File "/tmp/tmp9ndrzcub/tmpfue1ocfs.py", line 6 print S, ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s201743968
p02400
u525685480
1462346050
Python
Python3
py
Runtime Error
0
0
104
# -*- coding:utf-8 -*- import math r = int(input()) print("{0:f} {1:f}".format(r*r*math.pi,2*r*math.pi))
Traceback (most recent call last): File "/tmp/tmpsxhkc91u/tmpcre5zozs.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s256596161
p02400
u074121480
1462685689
Python
Python3
py
Runtime Error
0
0
97
import sys import math r = int(sys.stdin.readline()) print("%f %f" % (r*r*math.pi, r*2*math.pi))
Traceback (most recent call last): File "/tmp/tmpngsirf4j/tmpqiy_h_x9.py", line 4, in <module> r = int(sys.stdin.readline()) ^^^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: ''
s542594638
p02400
u216235239
1463874338
Python
Python3
py
Runtime Error
0
0
69
import math x = int(input()) print(x * 2 * math.pi, x ** 2 * math.pi)
Traceback (most recent call last): File "/tmp/tmpew9xjhb6/tmp51651im0.py", line 2, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s264385236
p02400
u070968430
1464673557
Python
Python3
py
Runtime Error
0
0
137
import math r = int(input()) S = r * r * math.pi C = r * 2 * math.pi print("{0:02.6f}".format(S), end =" ") print("{0:02.6f}".format(C))
Traceback (most recent call last): File "/tmp/tmp6mhzgkr4/tmplokjwih3.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s732592267
p02400
u454259029
1464788983
Python
Python3
py
Runtime Error
0
0
64
import math r = int(input()) print(r**2*math.pi," ",r*2*math.pi)
Traceback (most recent call last): File "/tmp/tmp532mmow0/tmp7p97y3ca.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s624166469
p02400
u454259029
1464789020
Python
Python3
py
Runtime Error
0
0
60
import math r = int(input()) print(r**2*math.pi,r*2*math.pi)
Traceback (most recent call last): File "/tmp/tmp0dpsouwl/tmpdy6e4edp.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s624624116
p02400
u454259029
1464789078
Python
Python3
py
Runtime Error
0
0
60
import math r = int(input()) print(r**2*math.pi,r*2*math.pi)
Traceback (most recent call last): File "/tmp/tmpb635rui8/tmppnh7wysg.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s380784610
p02400
u444997287
1465462994
Python
Python3
py
Runtime Error
0
0
87
pi = 3.141592653589793 r = int(input()) print('{0:f} {1:f}'.format(r*r*pi, 2 * r * pi))
Traceback (most recent call last): File "/tmp/tmp48ylub9l/tmp450h1na1.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s766750490
p02400
u427088273
1465633727
Python
Python3
py
Runtime Error
0
0
72
import math r = int(input()) print("%f %f" % (r*r*math.pi,2*r*math.pi))
Traceback (most recent call last): File "/tmp/tmp8lz4l22w/tmpghcscen8.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s170427769
p02400
u203261375
1466123158
Python
Python3
py
Runtime Error
0
0
61
import math r = int(input()) print(r**2*math.pi, 2*r*math.pi)
Traceback (most recent call last): File "/tmp/tmp5h6wgo43/tmph_htbcy8.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s261787199
p02400
u203261375
1466123316
Python
Python3
py
Runtime Error
0
0
60
import math r = int(input()) print(r*r*math.pi, 2*r*math.pi)
Traceback (most recent call last): File "/tmp/tmpjag51mlw/tmpvj6ncmu2.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s509822733
p02400
u756468156
1466499424
Python
Python3
py
Runtime Error
0
0
69
import math r = int(input()) print(r ** 2 * math.pi, 2 * r * math.pi)
Traceback (most recent call last): File "/tmp/tmpq67sz9t_/tmpu7s5w_t4.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s828107361
p02400
u756468156
1466499752
Python
Python3
py
Runtime Error
0
0
118
import math r = int(input()) area = r ** 2 * math.pi circum = 2 * r * math.pi print("{:f} {:f}".format(area, circum))
Traceback (most recent call last): File "/tmp/tmp9qmb0a9z/tmpsi7m7c1n.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s492146724
p02400
u756468156
1466499930
Python
Python3
py
Runtime Error
0
0
116
import math r = int(input()) area = r * r * math.pi circum = 2 * r * math.pi print("{:f} {:f}".format(area, circum))
Traceback (most recent call last): File "/tmp/tmph13dda5p/tmpxam19zoc.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s854227608
p02400
u514853553
1467034367
Python
Python3
py
Runtime Error
0
0
101
a=list(map(int,input().split())) string=str(a[0]**2*3.141592)+" "+str(2*3.141592*a[0]) print(string)
Traceback (most recent call last): File "/tmp/tmpl9adkr_n/tmp0j6vxxqr.py", line 1, in <module> a=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s823555268
p02400
u391228754
1467152926
Python
Python3
py
Runtime Error
0
0
106
import math a = int(input()) d = a * a * math.pi r = 2 * a * math.pi print("{0:.6f} {1:.6f}".format(d, r))
Traceback (most recent call last): File "/tmp/tmpm3ifrrww/tmp24ybcxhn.py", line 2, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s250144852
p02400
u391228754
1467153069
Python
Python3
py
Runtime Error
0
0
126
import math a = int(input()) d = a * a * round(math.pi, 6) r = 2 * a * round(math.pi, 6) print("{0:.6f} {1:.6f}".format(d, r))
Traceback (most recent call last): File "/tmp/tmpj3rkjuj7/tmpnzz47dab.py", line 2, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s403276672
p02400
u886766186
1467333264
Python
Python3
py
Runtime Error
0
0
77
from math import pi r = int(input()) print("{} {}".format(pi*(r**2), 2*pi*r))
Traceback (most recent call last): File "/tmp/tmpo2y_jk46/tmpmfz6o6ir.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s249120569
p02400
u340901659
1468027993
Python
Python3
py
Runtime Error
0
0
60
import math r = int(input()) print(math.pi*r*r, 2*math.pi*r)
Traceback (most recent call last): File "/tmp/tmpp4mvoncr/tmpgsmaidiy.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s117713265
p02400
u886766186
1468713718
Python
Python3
py
Runtime Error
0
0
83
from math import pi r = input() print("{:.10f} {:.10f}".format(pi*(r**2), 2*pi*r))
Traceback (most recent call last): File "/tmp/tmpnffz5dhs/tmp10c5blhc.py", line 3, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s576571436
p02400
u886766186
1468713848
Python
Python3
py
Runtime Error
0
0
83
from math import pi r = input() print("{:.10f} {:.10f}".format(pi*(r**2), 2*pi*r))
Traceback (most recent call last): File "/tmp/tmpgzr0do5f/tmp41apwilp.py", line 3, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s619292019
p02400
u886766186
1468713897
Python
Python3
py
Runtime Error
0
0
88
from math import pi r = int(input()) print("{:.10f} {:.10f}".format(pi*(r**2), 2*pi*r))
Traceback (most recent call last): File "/tmp/tmpbygydrfv/tmpf6oj1x75.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s338333429
p02400
u626838615
1469221157
Python
Python3
py
Runtime Error
0
0
98
import math r = int(input()) c = math.pi*r**2 s = 2*math.pi*r print("{0:.7f} {1:.7f}".format(c,s))
Traceback (most recent call last): File "/tmp/tmpn2_8r7m1/tmp12jo1gmk.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s300297788
p02400
u626838615
1469221268
Python
Python3
py
Runtime Error
0
0
96
pi = 3.141592653589 r = int(input()) c = pi*r**2 s = 2*pi*r print("{0:.7f} {1:.7f}".format(c,s))
Traceback (most recent call last): File "/tmp/tmpt34rmt49/tmp6qwh9yq7.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s516082029
p02400
u896025703
1469354984
Python
Python3
py
Runtime Error
0
0
96
import math r = int(input()) print("{:.6f} {:.6f}\n".format(math.pi * r ** 2, 2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmpg8m98rzj/tmpof9cexqg.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s857588899
p02400
u853165039
1469529480
Python
Python3
py
Runtime Error
0
0
85
import math r = int(input()) print("%.6f %.6f" % (math.pi * (r**2), 2 * math.pi * r))
Traceback (most recent call last): File "/tmp/tmp435iyuqj/tmp_dxb6mb1.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s742638480
p02400
u204883389
1469598965
Python
Python3
py
Runtime Error
0
0
163
import math def main(): r = [int(i) for i in input().strip()] print ("%f %f" % (r ** 2 * math.pi, 2 * r * math.pi)) if __name__ == '__main__': main()
Traceback (most recent call last): File "/tmp/tmp4wj_v6dr/tmpz3i_5d3a.py", line 7, in <module> main() File "/tmp/tmp4wj_v6dr/tmpz3i_5d3a.py", line 3, in main r = [int(i) for i in input().strip()] ^^^^^^^ EOFError: EOF when reading a line
s192515758
p02400
u204883389
1469599073
Python
Python3
py
Runtime Error
0
0
169
import math def main(): r = float [int(i) for i in input().sprit()] print ("%f %f" % (r ** 2 * math.pi, 2 * r * math.pi)) if __name__ == '__main__': main()
File "/tmp/tmp94gg1n7c/tmpauaaxwy2.py", line 3 r = float [int(i) for i in input().sprit()] ^^^ SyntaxError: invalid syntax
s478950817
p02400
u204883389
1469599202
Python
Python3
py
Runtime Error
0
0
168
import math def main(): r = float[int(i) for i in input().sprit()] print ("%f %f" % (r ** 2 * math.pi, 2 * r * math.pi)) if __name__ == '__main__': main()
File "/tmp/tmpb0lkckb1/tmprwf2i48x.py", line 3 r = float[int(i) for i in input().sprit()] ^^^ SyntaxError: invalid syntax
s138193471
p02400
u204883389
1469599662
Python
Python3
py
Runtime Error
0
0
163
import math def main(): r = [int(i) for i in input().sprit()] print ("%f %f" % (r ** 2 * math.pi, 2 * r * math.pi)) if __name__ == '__main__': main()
Traceback (most recent call last): File "/tmp/tmptsxrkk0e/tmp78yeex6r.py", line 7, in <module> main() File "/tmp/tmptsxrkk0e/tmp78yeex6r.py", line 3, in main r = [int(i) for i in input().sprit()] ^^^^^^^ EOFError: EOF when reading a line
s849880720
p02400
u204883389
1469599705
Python
Python3
py
Runtime Error
0
0
163
import math def main(): r = [int(i) for i in input().sprit()] print ("%f %f" % (r ** 2 * math.pi, 2 * r * math.pi)) if __name__ == '__main__': main()
Traceback (most recent call last): File "/tmp/tmp_r59vruz/tmpk8w6rpcu.py", line 7, in <module> main() File "/tmp/tmp_r59vruz/tmpk8w6rpcu.py", line 3, in main r = [int(i) for i in input().sprit()] ^^^^^^^ EOFError: EOF when reading a line
s726397059
p02400
u757827098
1469600241
Python
Python3
py
Runtime Error
0
0
107
r =[int(i) for i in input().split()] s = r * r *3.14 l = 2 * r *3.14 print("{0:.5f},{1:.5f}".format(s,l))
Traceback (most recent call last): File "/tmp/tmp3vdh6ddp/tmpax5s_4b0.py", line 1, in <module> r =[int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s006670519
p02400
u369313788
1469600298
Python
Python3
py
Runtime Error
0
0
71
r = int(input()) c = r * r *3.141592653589 print("{0:.6f}".format(c))
Traceback (most recent call last): File "/tmp/tmpyvp9khol/tmp21m5016v.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s686614007
p02400
u757827098
1469600353
Python
Python3
py
Runtime Error
0
0
130
import math.pi from math r =[int(i) for i in input().split()] s = r * r *pi l = 2 * r *pi print("{0:.5f},{1:.5f}".format(s,l))
File "/tmp/tmpvaf8vduo/tmpuxi4biob.py", line 1 import math.pi from math ^^^^ SyntaxError: invalid syntax
s646308534
p02400
u369313788
1469600363
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) c = r * r *3.141592653589 a = ("{0:.5f}".format(c)) print((a),(a))
Traceback (most recent call last): File "/tmp/tmp6qacw_ca/tmpehda16py.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s013389355
p02400
u369313788
1469600371
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) c = r * r *3.141592653589 a = ("{0:.6f}".format(c)) print((a),(a))
Traceback (most recent call last): File "/tmp/tmpcgjd1pv0/tmp5w13tbw4.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s764969887
p02400
u369313788
1469600379
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) c = r * r *3.141592653589 a = ("{0:.6f}".format(c)) print((a),(a))
Traceback (most recent call last): File "/tmp/tmp1fxkt61a/tmprs19yt1e.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s878211582
p02400
u757827098
1469600404
Python
Python3
py
Runtime Error
0
0
117
import math r =[int(i) for i in input().split()] s = r * r *pi l = 2 * r *pi print("{0:.5f},{1:.5f}".format(s,l))
Traceback (most recent call last): File "/tmp/tmpol574c9y/tmpbxmtm278.py", line 3, in <module> r =[int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s549432319
p02400
u757827098
1469600478
Python
Python3
py
Runtime Error
0
0
100
import math r =float(input()) s = r * r * pi l = 2 * r * pi print("{0:.5f},{1:.5f}".format(s,l))
Traceback (most recent call last): File "/tmp/tmpndyh7s_2/tmp78223oh0.py", line 3, in <module> r =float(input()) ^^^^^^^ EOFError: EOF when reading a line
s266992657
p02400
u085472528
1469600606
Python
Python3
py
Runtime Error
0
0
109
import math r = float[input()] s = r * r * math.pi l = r * 2 * math.pi print("{0:.5f} {1:5f}".format(s, l))
Traceback (most recent call last): File "/tmp/tmp7b9c0cdk/tmpi3rt8f_b.py", line 2, in <module> r = float[input()] ^^^^^^^ EOFError: EOF when reading a line
s022870913
p02400
u644636020
1469600612
Python
Python3
py
Runtime Error
0
0
110
import math r = float(input()) s = r * r * math.pi a = r * 2 * math.pi print("{0:.5f} {1:.5f}".format(s, l))
Traceback (most recent call last): File "/tmp/tmp0w3f_okw/tmp3xoy43h1.py", line 2, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s999128153
p02400
u628732336
1469600619
Python
Python3
py
Runtime Error
0
0
109
import math r = float(input()) s = r * r * math.pi l = r * 2 * math.pi print("{0:.5f} {1:.5f}"format(s, l))
File "/tmp/tmpjkd041js/tmpxb5uapvw.py", line 7 print("{0:.5f} {1:.5f}"format(s, l)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s562790715
p02400
u661284763
1469600658
Python
Python3
py
Runtime Error
0
0
96
r = float(input()) s = r * r * math.pi l = r * 2 * math.pi print("{0:.5f}{1:.5f}"format(s, l))
File "/tmp/tmpxi8k0_0v/tmp7ag_wlyq.py", line 6 print("{0:.5f}{1:.5f}"format(s, l)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s878909283
p02400
u498041957
1469600717
Python
Python3
py
Runtime Error
0
0
96
r = float(input()) s = r * r * math.pi l = r * 2 * math.pi print("{0:5f}{1:.5f}".format(s, l))
Traceback (most recent call last): File "/tmp/tmpo5enlz4m/tmpzh4v40lr.py", line 1, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s997129142
p02400
u498041957
1469600797
Python
Python3
py
Runtime Error
0
0
88
r = float(input()) s = r * r * math.pi l = r * 2 * math.pi print('%.5f %.5f' % (s, l))
Traceback (most recent call last): File "/tmp/tmpqb4u1qbb/tmps68rl708.py", line 1, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s769275634
p02400
u587193722
1469602261
Python
Python3
py
Runtime Error
0
0
82
import math r = float(input()) a = r * r* math.pi() b = 2r *math.pi() print( a, b)
File "/tmp/tmpalgtv50c/tmp895zzd55.py", line 4 b = 2r *math.pi() ^ SyntaxError: invalid decimal literal
s227313862
p02400
u510829608
1469707587
Python
Python3
py
Runtime Error
0
0
94
import math r = int(input()) print("{0:.6f} {1:.6f}".format(math.pi * r ** 2, 2* math.pi * r))
Traceback (most recent call last): File "/tmp/tmprp4f2pbq/tmp6n1maqzi.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s240170795
p02400
u554198876
1469802564
Python
Python3
py
Runtime Error
0
0
96
from math import pi r = int(input()) print(format(r * r * pi, '.6f'), format(r * 2 * pi, '.6f'))
Traceback (most recent call last): File "/tmp/tmpekcjuss6/tmpryfnfdte.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s749656219
p02400
u216425054
1470718917
Python
Python3
py
Runtime Error
0
0
67
import math C=math.pi print("{0:.6f} {1:.6f}").format(C*r**2,C*2*r)
Traceback (most recent call last): File "/tmp/tmpiyld6t7l/tmpzwojvkpl.py", line 3, in <module> print("{0:.6f} {1:.6f}").format(C*r**2,C*2*r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'format'
{0:.6f} {1:.6f}
s204145035
p02400
u216425054
1470718957
Python
Python3
py
Runtime Error
0
0
84
import math r=float(input()) C=math.pi print("{0:.6f} {1:.6f}").format(C*r**2,C*2*r)
Traceback (most recent call last): File "/tmp/tmp_jm23cq1/tmp4_ccu37o.py", line 2, in <module> r=float(input()) ^^^^^^^ EOFError: EOF when reading a line
s641810103
p02400
u327125861
1471006374
Python
Python3
py
Runtime Error
0
0
95
r = int(input()) pi = 3.141592653589 S = r * r * pi L = 2 * r * pi print(str(S) + " " + str(L))
Traceback (most recent call last): File "/tmp/tmp2btb6buq/tmpyrfll8es.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s249062389
p02400
u197204103
1471069395
Python
Python3
py
Runtime Error
0
0
81
r = int(input()) import math a = r*r*math.pi b = r*2*math.pi print('%s %s'%(a,b))
Traceback (most recent call last): File "/tmp/tmpz0ufusyr/tmp69t_rdya.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s006293956
p02400
u197204103
1471069677
Python
Python3
py
Runtime Error
0
0
91
r = int(input()) a = r*r*3.1415926535897932 b = r*2*3.1415926535897932 print('%s %s'%(a,b))
Traceback (most recent call last): File "/tmp/tmpz__pvlnk/tmp06ud4jbu.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s941648693
p02400
u589886885
1471442995
Python
Python3
py
Runtime Error
0
0
103
import math r = int(input()) a = r * r * math.pi b = r * 2 * math.pi print('{0:f} {1:f}'.format(a, b))
Traceback (most recent call last): File "/tmp/tmpv9w0hzqq/tmpjpg5_wbb.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s975528894
p02400
u589886885
1471443026
Python
Python3
py
Runtime Error
0
0
103
import math r = int(input()) a = r * r * math.pi b = r * 2 * math.pi print('{0:f} {1:f}'.format(a, b))
Traceback (most recent call last): File "/tmp/tmpu7ibph4x/tmp8shx4hr3.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s796848721
p02400
u677859833
1472367513
Python
Python3
py
Runtime Error
0
0
97
import math r = int(input()) print("{0:.10f}".format(r*r*math.pi),"{0:.10f}".format(2*r*math.pi))
Traceback (most recent call last): File "/tmp/tmpwp6690c0/tmp0zkhp3l6.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s008342668
p02400
u792783386
1473249460
Python
Python
py
Runtime Error
0
0
109
import math r = input() # ??¢??? S = math.pi * r ** 2 # ?????¨ L = math.pi * r * 2 print "%f %f" %(S, L)
File "/tmp/tmp28j9oo5a/tmppa25m2ee.py", line 10 print "%f %f" %(S, L) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s911145794
p02400
u058433718
1473853849
Python
Python3
py
Runtime Error
0
0
146
import sys PI = 3.1415926 r = int(sys.stdin.readline().strip()) area = r * r * PI periphery = r * 2 * PI print('%.6f %.6f' % (area, periphery))
Traceback (most recent call last): File "/tmp/tmppx17uj5l/tmpfuv3_gpf.py", line 5, in <module> r = int(sys.stdin.readline().strip()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: ''
s050860615
p02400
u956645355
1474277797
Python
Python3
py
Runtime Error
0
0
99
import math r = input() m = r ** 2 * math.pi l = r * 2 * math.pi print('{:6f} {:.6f}'.format(m, l))
Traceback (most recent call last): File "/tmp/tmpec20uc53/tmpqlxtsifm.py", line 2, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line