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
s142230041
p02400
u580737984
1498028527
Python
Python3
py
Runtime Error
0
0
113
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print(area,end=' ') print(length)
Traceback (most recent call last): File "/tmp/tmp3742lfy0/tmpz41k1vtj.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s856757069
p02400
u580737984
1498028655
Python
Python3
py
Runtime Error
0
0
104
pi = 3.14159 r = int(input()) area = r * r * pi length = r * 2 * pi print(area,end=' ') print(length)
Traceback (most recent call last): File "/tmp/tmpogiqr47d/tmp3llrgfro.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s528747113
p02400
u580737984
1498029478
Python
Python3
py
Runtime Error
0
0
142
pi = 3.14159265 r = int(input()) area = r * r * pi length = r * 2 * pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmpz1akiaao/tmp3cu3623x.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s284403455
p02400
u580737984
1498029673
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmpct2zlp6y/tmpzqsqy1o_.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s898792921
p02400
u580737984
1498030276
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmpnon2fwjb/tmpg8lyvg9k.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s111881584
p02400
u580737984
1498030442
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmpgu2gj1ff/tmp8w9uvww1.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s799478342
p02400
u580737984
1498030996
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmp07gzexqa/tmp232w7ewy.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s232424948
p02400
u580737984
1498031769
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmpmdvu865y/tmp3tcicyml.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s210298540
p02400
u580737984
1498031888
Python
Python3
py
Runtime Error
0
0
112
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print(area,end=' ') print(length)
Traceback (most recent call last): File "/tmp/tmpwost71_m/tmp19gwztd6.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s892841509
p02400
u580737984
1498031930
Python
Python3
py
Runtime Error
0
0
143
import math r = int(input()) area = r * r * math.pi length = r * 2 * pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmp4auy9vzf/tmps_61b57d.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s301895570
p02400
u580737984
1498031947
Python
Python
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmp_cwzvc51/tmpib96r0zi.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s825210505
p02400
u354053070
1498284851
Python
Python3
py
Runtime Error
0
0
107
from math import pi as p a = int(input()) s = round(p * (a ** 2), 11) l = round(2 * p * a, 11) print(s, l)
Traceback (most recent call last): File "/tmp/tmp7e61p7rq/tmp9rl8upos.py", line 3, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s704172194
p02400
u354053070
1498284884
Python
Python3
py
Runtime Error
0
0
114
from math import pi a = int(input()) s = round(math.pi * (a ** 2), 11) l = round(2 * math.pi * a, 11) print(s, l)
Traceback (most recent call last): File "/tmp/tmp488t6k6a/tmp1p2br5e4.py", line 3, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s506403739
p02400
u354053070
1498285076
Python
Python3
py
Runtime Error
0
0
104
from math import pi a = int(input()) s = round(pi * (a ** 2), 11) l = round(2 * pi * a, 11) print(s, l)
Traceback (most recent call last): File "/tmp/tmpue2qcba9/tmprfz8ulxr.py", line 3, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s178142877
p02400
u623827446
1498613638
Python
Python3
py
Runtime Error
0
0
99
import math r=int(input()) a=r*r*math.pi b=2*r*math.pi print('%.6f'%(a), end='') print(' %.6f'%(b))
Traceback (most recent call last): File "/tmp/tmpfe7ijm2g/tmprent7txb.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s510485788
p02400
u623827446
1498614765
Python
Python3
py
Runtime Error
0
0
99
import math r=int(input()) a=r*r*math.pi b=2*r*math.pi print('%.6f'%(a), end='') print(' %.6f'%(b))
Traceback (most recent call last): File "/tmp/tmpgzo1718p/tmpjq_begy_.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s401147570
p02400
u623827446
1498614913
Python
Python3
py
Runtime Error
0
0
80
import math r=int(input()) a=r*r*math.pi b=2*r*math.pi print(a, end='') print(b)
Traceback (most recent call last): File "/tmp/tmp3haskase/tmptmeadnx_.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s447017930
p02400
u623827446
1498614962
Python
Python3
py
Runtime Error
0
0
65
import math r=int(input()) a=r*r*math.pi b=2*r*math.pi print(a,b)
Traceback (most recent call last): File "/tmp/tmpw_koeqji/tmp2bv8e6c_.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s566276817
p02400
u580737984
1498718038
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmprqb7qsku/tmpdnf9f7cz.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s265532930
p02400
u580737984
1498718262
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmpxslu0see/tmpodqawi36.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s600482658
p02400
u580737984
1498718328
Python
Python3
py
Runtime Error
0
0
146
from math import pi r = int(input()) area = r * r * pi length = r * 2 * pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
Traceback (most recent call last): File "/tmp/tmpbwqnt0co/tmpcdaxjkx0.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s882322658
p02400
u569585396
1498719016
Python
Python3
py
Runtime Error
0
0
107
N = map(int, input().split()) area = (N * N * 3.14) len = (N * 2 * 3.14) print('{} {}'.format(area, len))
Traceback (most recent call last): File "/tmp/tmp8q8w1fqn/tmpdsrvedmb.py", line 1, in <module> N = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s088356445
p02400
u569585396
1498719077
Python
Python3
py
Runtime Error
0
0
109
N = map(int, input().split()) area = (N * N * ??) len = (N * 2 * ??) print('{0:f} {1:f}'.format(area, len))
File "/tmp/tmpnxwr2e9n/tmplv413deq.py", line 3 area = (N * N * ??) ^ SyntaxError: invalid syntax
s817782055
p02400
u569585396
1498719130
Python
Python3
py
Runtime Error
0
0
96
N = int(input()) area = (N * N * ??) len = (N * 2 * ??) print('{0:f} {1:f}'.format(area, len))
File "/tmp/tmpch_4zl6c/tmp_2sz7bou.py", line 3 area = (N * N * ??) ^ SyntaxError: invalid syntax
s613489092
p02400
u340500592
1498976507
Python
Python3
py
Runtime Error
0
0
112
import math r = float(input()) area = math.pi * r * r circumference = 2 * math.pi * r print(area, circumferene)
Traceback (most recent call last): File "/tmp/tmpb304_8xg/tmppx7daw8l.py", line 3, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s525792093
p02400
u264972437
1499253268
Python
Python3
py
Runtime Error
0
0
79
import math r = int(input()) print('{0} {1}'.format(math.pi*r**2,2*math.pi*r))
Traceback (most recent call last): File "/tmp/tmpggo1qx6z/tmpktagt16x.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s253319717
p02400
u264972437
1499253908
Python
Python3
py
Runtime Error
0
0
79
import math r = int(input()) print('{0} {1}'.format(math.pi*r**2,2*math.pi*r))
Traceback (most recent call last): File "/tmp/tmp599uybxr/tmpzhpjtjnl.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s414320486
p02400
u264972437
1499255862
Python
Python3
py
Runtime Error
0
0
81
import math r = int(input()) print('{0} {1}'.format(math.pi*(r**2),2*math.pi*r))
Traceback (most recent call last): File "/tmp/tmp1igk_as_/tmpid5b5jbp.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s564887064
p02400
u248424983
1499921638
Python
Python3
py
Runtime Error
0
0
94
import math a=int(input()) print(('%0.5f' % (math.pi*r**2)) + " " + ('%0.5f' % (2*math.pi*r)))
Traceback (most recent call last): File "/tmp/tmpmh0ra_71/tmp1r645dnp.py", line 2, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s956008793
p02400
u248424983
1499921664
Python
Python3
py
Runtime Error
0
0
94
import math r=int(input()) print(('%0.5f' % (math.pi*r**2)) + " " + ('%0.5f' % (2*math.pi*r)))
Traceback (most recent call last): File "/tmp/tmpt0x8cnmu/tmpg517r_s1.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s064404918
p02400
u663910047
1500127107
Python
Python3
py
Runtime Error
0
0
48
r = int(input()) p = 3.141592 print(r*r*p,2*r*p)
Traceback (most recent call last): File "/tmp/tmp_1c3he5_/tmpfja5je0y.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s570817857
p02400
u663910047
1500127213
Python
Python3
py
Runtime Error
0
0
66
r = int(input()) p = 3.141592 print(round(r*r*p,6),round(2*r*p,6))
Traceback (most recent call last): File "/tmp/tmpyrrdih6d/tmpk5jyovys.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s315774392
p02400
u663910047
1500127238
Python
Python3
py
Runtime Error
0
0
66
r = int(input()) p = 3.141592 print(round(r*r*p,6),round(2*r*p,6))
Traceback (most recent call last): File "/tmp/tmpc508uwge/tmp949a3dhi.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s989054567
p02400
u914146430
1500271661
Python
Python3
py
Runtime Error
0
0
111
W,H,x,y,r=list(map(int,input().split())) if r<=x<=(W-r) and r<=y<=(H-r): print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpc49aq89h/tmpbt24vkhy.py", line 1, in <module> W,H,x,y,r=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s771442865
p02400
u914146430
1500272087
Python
Python3
py
Runtime Error
0
0
93
import math r=int(input()) l=math.pi*r*2 s=(r**2)*math.pi print("{0:5f} {1:5f}".format(l, s))
Traceback (most recent call last): File "/tmp/tmprvhk8jjo/tmpgxeaffmw.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s916163777
p02400
u914146430
1500272152
Python
Python3
py
Runtime Error
0
0
93
import math r=int(input()) l=math.pi*r*2 s=(r**2)*math.pi print("{0:6f} {1:6f}".format(l, s))
Traceback (most recent call last): File "/tmp/tmpj9vjy6dv/tmp8wx_eogz.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s589089933
p02400
u853619096
1500312376
Python
Python3
py
Runtime Error
0
0
96
import math r=int().input() c = r * r *math.pi cf = r *2 *math.pi print(f"}(c:0.5f) (cf:0.5f)})
File "/tmp/tmp9pfzvfss/tmpnzruvson.py", line 5 print(f"}(c:0.5f) (cf:0.5f)}) ^ SyntaxError: unterminated string literal (detected at line 5)
s370688963
p02400
u853619096
1500312426
Python
Python3
py
Runtime Error
0
0
105
import math r=int().input() c = r * r *math.pi cf = r *2 *math.pi print("{0:.5f} {1:.5f}".format(c,cf))
Traceback (most recent call last): File "/tmp/tmptxv4085u/tmps_vm0a8m.py", line 2, in <module> r=int().input() ^^^^^^^^^^^ AttributeError: 'int' object has no attribute 'input'
s868467190
p02400
u853619096
1500312451
Python
Python3
py
Runtime Error
0
0
103
import math r=int().input() c = r * r *math.pi cf = r *2 *math.pi print("{0:.5f} {1:.5f}".format(c,cf))
Traceback (most recent call last): File "/tmp/tmps2qk_1il/tmptsitcsut.py", line 2, in <module> r=int().input() ^^^^^^^^^^^ AttributeError: 'int' object has no attribute 'input'
s425303096
p02400
u853619096
1500312510
Python
Python3
py
Runtime Error
0
0
105
import math r=float().input() c = r * r *math.pi cf = r *2 *math.pi print("{0:.5f} {1:.5f}".format(c,cf))
Traceback (most recent call last): File "/tmp/tmpe9vp0dsu/tmp0ynksepl.py", line 2, in <module> r=float().input() ^^^^^^^^^^^^^ AttributeError: 'float' object has no attribute 'input'
s552335137
p02400
u350064373
1500470529
Python
Python3
py
Runtime Error
0
0
111
import math r = input() S = r * r * math.pi l = 2 * math.pi * r print("{0:.5f}".format(S),"{0:.5f}".format(l))
Traceback (most recent call last): File "/tmp/tmpd43rp5hr/tmp53a028hs.py", line 2, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s795760162
p02400
u350064373
1500470643
Python
Python3
py
Runtime Error
0
0
93
import math r = input() S = r * r * math.pi l = 2 * math.pi * r print("{0:.5f}".format(S, l))
Traceback (most recent call last): File "/tmp/tmpf_obxsn5/tmpxkpmj9wj.py", line 2, in <module> r = input() ^^^^^^^ EOFError: EOF when reading a line
s955326257
p02400
u350064373
1500470971
Python
Python3
py
Runtime Error
0
0
100
import math r = int(input("")) S = r * r * math.pi l = 2 * math.pi * r print("{0:.5f}".format(S, l))
Traceback (most recent call last): File "/tmp/tmpiri_m4ox/tmp1_i5l63a.py", line 2, in <module> r = int(input("")) ^^^^^^^^^ EOFError: EOF when reading a line
s202218446
p02400
u447009770
1500523790
Python
Python3
py
Runtime Error
0
0
101
### 20.07.2017 import math r = int(input()) print('%03.6f' % (2*r*math.pi), '%03.6f' % (r*r*math.pi))
Traceback (most recent call last): File "/tmp/tmpj9xrubh0/tmpmcsglj3t.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s460163855
p02400
u447009770
1500523814
Python
Python3
py
Runtime Error
0
0
86
import math r = int(input()) print('%03.6f' % (2*r*math.pi), '%03.6f' % (r*r*math.pi))
Traceback (most recent call last): File "/tmp/tmp09tjoagn/tmp997zuq_5.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s392818510
p02400
u888737393
1500699879
Python
Python3
py
Runtime Error
0
0
95
import math N = int(input()) S = round(N**2*math.pi, 6) R = round(2*math.pi*N, 6) print(S, R)
Traceback (most recent call last): File "/tmp/tmppz9902vi/tmp88_a6ca0.py", line 2, in <module> N = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s883069947
p02400
u888737393
1500699905
Python
Python3
py
Runtime Error
0
0
96
import math N = int(input()) S = round(N**2*math.pi, 6) R = round(2*math.pi*N, 6) print(S, R)
Traceback (most recent call last): File "/tmp/tmpllwd2xvp/tmpa7t5ri76.py", line 3, in <module> N = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s589561186
p02400
u888737393
1500700159
Python
Python3
py
Runtime Error
0
0
93
N = int(input()) pi = 3.141592653589 S = round(N**2*pi, 6) R = round(2*pi*N, 6) print(S, R)
Traceback (most recent call last): File "/tmp/tmpotv01m2z/tmp96haro40.py", line 1, in <module> N = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s427131274
p02400
u888737393
1500700234
Python
Python3
py
Runtime Error
0
0
93
N = int(input()) pi = 3.141592653589 S = round(N**2*pi, 6) R = round(2*pi*N, 6) print(S, R)
Traceback (most recent call last): File "/tmp/tmp_e06uklr/tmplbp88qk9.py", line 1, in <module> N = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s418353071
p02400
u888737393
1500700261
Python
Python3
py
Runtime Error
0
0
88
N = input() pi = 3.141592653589 S = round(N**2*pi, 6) R = round(2*pi*N, 6) print(S, R)
Traceback (most recent call last): File "/tmp/tmpvn_1s17l/tmp6pjpz241.py", line 1, in <module> N = input() ^^^^^^^ EOFError: EOF when reading a line
s839817232
p02400
u888737393
1500700387
Python
Python3
py
Runtime Error
0
0
72
N = int(input()) p = 3.141592653589 S = N**2*p R = 2*pi*N print(S, R)
Traceback (most recent call last): File "/tmp/tmp5v45121g/tmpm9g8iaeh.py", line 1, in <module> N = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s679166490
p02400
u888737393
1500700477
Python
Python3
py
Runtime Error
0
0
70
N = input() p = 3.141592653589 S = N**2*p R = 2*pi*N print(S, R)
Traceback (most recent call last): File "/tmp/tmpapuafy_g/tmpd6pe10n2.py", line 1, in <module> N = input() ^^^^^^^ EOFError: EOF when reading a line
s520025350
p02400
u888737393
1500711242
Python
Python3
py
Runtime Error
0
0
98
import math r = float(input()) s = round(r**2*math.pi, 6) v = round(2*math.pi*r, 6) print(s, V)
Traceback (most recent call last): File "/tmp/tmpyn7ztp6u/tmp_mp3ltt4.py", line 3, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s449193065
p02400
u888737393
1500711336
Python
Python3
py
Runtime Error
0
0
78
import math r = float(input()) s = r**2*math.pi v = 2*math.pi*r print(s, V)
Traceback (most recent call last): File "/tmp/tmpa40tcqhn/tmpkptxmgf3.py", line 3, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s612365092
p02400
u888737393
1500711550
Python
Python3
py
Runtime Error
0
0
103
import math r = float(input()) s = r**2*math.pi v = 2*math.pi*r print("{0:.6f} {1:.6f}'.format(s, V)
File "/tmp/tmp7izw98n_/tmp888ug4jl.py", line 8 print("{0:.6f} {1:.6f}'.format(s, V) ^ SyntaxError: unterminated string literal (detected at line 8)
s758822639
p02400
u888737393
1500711571
Python
Python3
py
Runtime Error
0
0
104
import math r = float(input()) s = r**2*math.pi v = 2*math.pi*r print("{0:.6f} {1:.6f}'.format(s, V))
File "/tmp/tmpqdqt0zxk/tmprxgh_2ue.py", line 8 print("{0:.6f} {1:.6f}'.format(s, V)) ^ SyntaxError: unterminated string literal (detected at line 8)
s588191887
p02400
u888737393
1500711608
Python
Python3
py
Runtime Error
0
0
104
import math r = float(input()) s = r**2*math.pi v = 2*math.pi*r print("{0:.6f} {1:.6f}".format(s, V))
Traceback (most recent call last): File "/tmp/tmpf_xf2djq/tmp7be8f7n4.py", line 3, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s953807579
p02400
u043639882
1501118936
Python
Python3
py
Runtime Error
0
0
57
r=input() S=r**2*pi l=2*pi*r print("{0} {1}",format(S,l))
Traceback (most recent call last): File "/tmp/tmps5ezekam/tmpf2jyw4ft.py", line 1, in <module> r=input() ^^^^^^^ EOFError: EOF when reading a line
s413043845
p02400
u311299757
1501325196
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) pi = 3.141592653589793 print("{:.7f} {:.7f}".format(r**2*pi, r*2*pi))
Traceback (most recent call last): File "/tmp/tmpmepihyk2/tmp6q7u1lqm.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s870565514
p02400
u311299757
1501325236
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) pi = 3.141592653589793 print("{:.7f} {:.7f}".format(r**2*pi, r*2*pi))
Traceback (most recent call last): File "/tmp/tmp7nm0v9kc/tmpex8iofot.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s854390774
p02400
u954858867
1501332523
Python
Python
py
Runtime Error
0
0
93
import math r = int(raw_input()) pai = 3.1415 print('%.5f %.5f' % (r*r*math.pi, 2*math.pi*r))
Traceback (most recent call last): File "/tmp/tmpe2n_jhvk/tmpx3g187m6.py", line 2, in <module> r = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s597441806
p02400
u954858867
1501332570
Python
Python
py
Runtime Error
0
0
73
r = int(raw_input()) pai = 3.1415 print('%.5f %.5f' % (r*r*pai, 2*pai*r))
Traceback (most recent call last): File "/tmp/tmpryz1yjm2/tmpjzd282r3.py", line 1, in <module> r = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s150129902
p02400
u467070262
1501601980
Python
Python3
py
Runtime Error
0
0
72
r = int(input()) pi = 3.1415926535 print("%.5f %.5f" % (pi*r*r, 2*pi*r))
Traceback (most recent call last): File "/tmp/tmpgd_ylvww/tmpsf6alw9k.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s941146066
p02400
u467070262
1501602094
Python
Python3
py
Runtime Error
0
0
72
r = int(input()) pi = 3.1415926535 print("%.8f %.8f" % (pi*r*r, 2*pi*r))
Traceback (most recent call last): File "/tmp/tmpdv7886d1/tmpnbe5i7rg.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s979037052
p02400
u027634846
1501850518
Python
Python3
py
Runtime Error
0
0
118
import decimal r = int(input()) print('{:.6f}'.format( r * r * 3.1415926)) print('{:.6f}'.format((r + r) * 3.1415926))
Traceback (most recent call last): File "/tmp/tmpjcn9368h/tmpe0amq73n.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s258380283
p02400
u725841747
1502035707
Python
Python3
py
Runtime Error
0
0
78
import math r = int(input()) print("{0} {1}".format(r**2*math.pi,2*math.pi*r))
Traceback (most recent call last): File "/tmp/tmpxsajf6jd/tmpnb6bhkgg.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s732084816
p02400
u821624310
1502082907
Python
Python3
py
Runtime Error
0
0
77
r = int(input()) area = r**2 * 3.14 enshuu = r * 2 * 3.14 print(area, enshuu)
Traceback (most recent call last): File "/tmp/tmpxynprohk/tmpuxuksxew.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s190537112
p02400
u925992597
1502152109
Python
Python3
py
Runtime Error
0
0
62
import math r = int(input()) print((r**2)*math.pi,r*2*math.pi)
Traceback (most recent call last): File "/tmp/tmpkm5mom7f/tmp5gus_xxm.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s895401550
p02400
u597198969
1502345410
Python
Python3
py
Runtime Error
0
0
100
r = int(input()) p = 3.141592653589 a = r * r * p b = 2 * r * p print("{0:.6f} {1:.6f}".format(a,b))
Traceback (most recent call last): File "/tmp/tmpmgd1y7cd/tmp4y_a1owv.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s978085857
p02400
u853619096
1502518481
Python
Python3
py
Runtime Error
0
0
68
import math r = int(input()) s=r**2*math.pi l=2*r*math.pi print(s,l)
Traceback (most recent call last): File "/tmp/tmp1alkvxbe/tmpz35052k3.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s271115976
p02400
u853619096
1502518530
Python
Python3
py
Runtime Error
0
0
82
import math r = int(input()) s=r**2*math.pi l=2*r*math.pi print(float(s),float(l))
Traceback (most recent call last): File "/tmp/tmp0ne9unf6/tmpt0wfwbp9.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s650765105
p02400
u853619096
1502518681
Python
Python3
py
Runtime Error
0
0
92
import math r = int(input()) s=r**2*math.pi l=2*r*math.pi print('{:.5f} {:.5f}'.format(s,l))
Traceback (most recent call last): File "/tmp/tmptv43d3ow/tmplls2jyll.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s735864016
p02400
u853619096
1502518729
Python
Python3
py
Runtime Error
0
0
92
import math r = int(input()) s=r**2*math.pi l=2*r*math.pi print('{:.6f} {:.6f}'.format(s,l))
Traceback (most recent call last): File "/tmp/tmp35ngojws/tmp35qj_tmq.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s557901000
p02400
u029473859
1502761205
Python
Python3
py
Runtime Error
0
0
60
r = int(input()) import math print(math.pi*r**2,2*math.pi*r)
Traceback (most recent call last): File "/tmp/tmpl78t9e5a/tmpfs1fiyog.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s589800309
p02400
u029473859
1502761264
Python
Python3
py
Runtime Error
0
0
90
r = int(input()) import math print("{:f}".format(math.pi*r**2),"{:f}".format(2*math.pi*r))
Traceback (most recent call last): File "/tmp/tmpo13fniqw/tmp8nayxb64.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s114638431
p02400
u029473859
1502761372
Python
Python3
py
Runtime Error
0
0
87
r = int(input()) pi = 3.14159265359 print("{:f}".format(pi*r**2),"{:f}".format(2*pi*r))
Traceback (most recent call last): File "/tmp/tmpug4p78gl/tmp9jy3k1rz.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s271794487
p02400
u957021183
1502947866
Python
Python3
py
Runtime Error
0
0
243
# Aizu Problem ITP_1_4_B: Circle # import sys, math, os # read input: PYDEV = os.environ.get('PYDEV') if PYDEV=="True": sys.stdin = open("sample-input.txt", "rt") pi = math.pi r = int(input()) print("%.6f %.6f" % (pi * r**2, 2 * pi * r))
Traceback (most recent call last): File "/tmp/tmp67suroej/tmpu2movry8.py", line 11, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s292714527
p02400
u283452598
1503045381
Python
Python3
py
Runtime Error
0
0
81
import math r=int(input()) print("{0:8f} {1:8f}".format(math.pi*r*r,r*2*math.pi))
Traceback (most recent call last): File "/tmp/tmpvrt70mnv/tmp1p7dsdu_.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s277657535
p02400
u283452598
1503045469
Python
Python3
py
Runtime Error
0
0
81
import math r=int(input()) print("{0:8f} {1:8f}".format(math.pi*r*r,r*2*math.pi))
Traceback (most recent call last): File "/tmp/tmpi4qykhzj/tmpyv0825yz.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s049444004
p02400
u316697096
1503149948
Python
Python
py
Runtime Error
0
0
85
r= map(int,raw_input().split()) s=float(r)*r*pi l=float(r)*2*pi print "%f %f" %(s,l)
File "/tmp/tmp05z38epg/tmp9iy1bjh0.py", line 5 print "%f %f" %(s,l) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s456855812
p02400
u316697096
1503149977
Python
Python
py
Runtime Error
0
0
93
r= map(int,raw_input().split()) pi=3.14 s=float(r)*r*pi l=float(r)*2*pi print "%f %f" %(s,l)
File "/tmp/tmpgm2x3xln/tmp4ez39igu.py", line 6 print "%f %f" %(s,l) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s934853070
p02400
u450020188
1503631774
Python
Python3
py
Runtime Error
0
0
73
x = int(input()) a = 3.14*x*x b = 3.14*(x+x) print("%.6f" %a, "%.6f" %b)
Traceback (most recent call last): File "/tmp/tmp1e2ewapl/tmp9jh8gcc8.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s637391276
p02400
u450020188
1503632020
Python
Python3
py
Runtime Error
0
0
92
import math x = int(input()) a = math.pi*x*x b = math.pi*(x+x) print("%.6f" %a, "%.6f" %b)
Traceback (most recent call last): File "/tmp/tmp3e189nxs/tmpr4n0_xmq.py", line 3, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s807204618
p02400
u450020188
1503632132
Python
Python3
py
Runtime Error
0
0
96
import math pi = math.pi x = int(input()) a = pi*x*x b = pi*(x+x) print("%.6f" %a, "%.6f" %b)
Traceback (most recent call last): File "/tmp/tmpraz78t0w/tmpnsyo57dc.py", line 4, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s691535693
p02400
u450020188
1503632328
Python
Python3
py
Runtime Error
0
0
108
import math pi = math.pi x = int(input()) a = pi*x*x b = pi*(x+x) print("{0:0.6f} {1:0.6f}".format(a, b))
Traceback (most recent call last): File "/tmp/tmpyx3pafeq/tmp5zzguxik.py", line 4, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s332705823
p02400
u096862087
1503678248
Python
Python3
py
Runtime Error
0
0
99
r = int(input()) pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
Traceback (most recent call last): File "/tmp/tmpjd6pd6ds/tmpa2bkjbis.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s175095619
p02400
u096862087
1503678275
Python
Python3
py
Runtime Error
0
0
99
r = int(input()) pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
Traceback (most recent call last): File "/tmp/tmphtdiuoeh/tmpkx_zdoou.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s548736307
p02400
u096862087
1503678404
Python
Python3
py
Runtime Error
0
0
99
r = (int)input() pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
File "/tmp/tmp2qg7jq75/tmp8u83jtfj.py", line 1 r = (int)input() ^^^^^ SyntaxError: invalid syntax
s584490370
p02400
u096862087
1503678431
Python
Python3
py
Runtime Error
0
0
99
r = (int)input() pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
File "/tmp/tmpy8h55_12/tmpyz4b16l6.py", line 1 r = (int)input() ^^^^^ SyntaxError: invalid syntax
s026883352
p02400
u096862087
1503678518
Python
Python3
py
Runtime Error
0
0
99
r = int(input()) pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
Traceback (most recent call last): File "/tmp/tmp5q3vx3_v/tmp7h0l6kq5.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s940969015
p02400
u727538672
1504171715
Python
Python3
py
Runtime Error
0
0
75
import math print("{0:f} {1:f}".format(r ** 2 * math.pi, r * 2 * math.pi))
Traceback (most recent call last): File "/tmp/tmpehv2cwnz/tmpj4aevqos.py", line 2, in <module> print("{0:f} {1:f}".format(r ** 2 * math.pi, r * 2 * math.pi)) ^ NameError: name 'r' is not defined
s609131240
p02400
u727538672
1504171813
Python
Python3
py
Runtime Error
0
0
74
import math r == float(input()) print(r ** 2 * math.pi, r * 2 * math.pi))
File "/tmp/tmppkzx4mp6/tmpqa18tr9f.py", line 3 print(r ** 2 * math.pi, r * 2 * math.pi)) ^ SyntaxError: unmatched ')'
s463788604
p02400
u727538672
1504171873
Python
Python3
py
Runtime Error
0
0
73
import math r == float(input()) print(r ** 2 * math.pi, r * 2 * math.pi)
Traceback (most recent call last): File "/tmp/tmpt_w5x8qs/tmpgomwd886.py", line 2, in <module> r == float(input()) ^ NameError: name 'r' is not defined
s299122170
p02400
u666221014
1504520329
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) pi = 3.14159265 print("{:.6f} {:.6f}".format(pi * r * r, 2 * pi * r))
Traceback (most recent call last): File "/tmp/tmp1pl9zfqd/tmp4dxcx7i9.py", line 1, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s840710661
p02400
u956226421
1504592703
Python
Python3
py
Runtime Error
0
0
143
import math pi = math.pi r = int(input()) S = r ** 2 * pi syu = 2 * pi * r print(str("{0:.6f}".format(S)) + ' ' + str("{0:.6f}".format(syu)))
Traceback (most recent call last): File "/tmp/tmp_ibg72ql/tmp9tmq7ldd.py", line 4, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s353394000
p02400
u956226421
1504592790
Python
Python3
py
Runtime Error
0
0
127
pi = 3.14 r = int(input()) S = r ** 2 * pi syu = 2 * pi * r print(str("{0:.6f}".format(S)) + ' ' + str("{0:.6f}".format(syu)))
Traceback (most recent call last): File "/tmp/tmpvlv9o0qt/tmpt1ko379j.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s758266066
p02400
u343251190
1504862503
Python
Python3
py
Runtime Error
0
0
79
import math r = int(input()) print("%f %f" % (math.pi * r**2, math.pi * r * 2))
Traceback (most recent call last): File "/tmp/tmpq2p0e04u/tmphim9ytiv.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s886992136
p02400
u343251190
1504862664
Python
Python3
py
Runtime Error
0
0
115
import math r = int(input()) if r == 0: print(0,0) else: print("%f %f" % (math.pi * r**2, math.pi * r * 2))
Traceback (most recent call last): File "/tmp/tmpr8jqp39s/tmpu3sctfcx.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s504176828
p02400
u343251190
1504862740
Python
Python3
py
Runtime Error
0
0
128
import math r = int(input()) if r == 0: print('%f %f' % (0, 0)) else: print("%f %f" % (math.pi * r**2, math.pi * r * 2))
Traceback (most recent call last): File "/tmp/tmpujq9skl8/tmpzxipltyl.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s006406031
p02400
u933096856
1505005020
Python
Python3
py
Runtime Error
0
0
59
import math r=int(input()) print(math.pi*r**2, math.pi*2*r)
Traceback (most recent call last): File "/tmp/tmp775mvpkn/tmpj9j1vdbz.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line