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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s245027922 | p02400 | u548252256 | 1556445302 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | r = int(input())
m = 3.141592 * r * r
l = 3.141592 * r * 2
print("{:.5f}".format(m),"{:.5f}".format(l))
| Traceback (most recent call last):
File "/tmp/tmpocifgqsd/tmpaczjamui.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s872932669 | p02400 | u344890307 | 1556518498 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | inport math
r=input().strip()
print('{0:5f} {1:5f}'.format(r**2*math.pi,2*r*math.pi)
| File "/tmp/tmp48s6j1rt/tmp88s7357b.py", line 1
inport math
^^^^
SyntaxError: invalid syntax
| |
s742264198 | p02400 | u344890307 | 1556518568 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
r=int(input().strip())
print('{0:5f} {1:5f}'.format(r**2*math.pi,2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpbdgaro9p/tmpd94egf47.py", line 3, in <module>
r=int(input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s563827697 | p02400 | u344890307 | 1556518598 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
r=int(input().strip())
print('{0:5f} {1:5f}'.format(r**2*math.pi,2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpbryr1de0/tmpcl9hjrlr.py", line 3, in <module>
r=int(input().strip())
^^^^^^^
EOFError: EOF when reading a line
| |
s099460347 | p02400 | u344890307 | 1556518635 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r=int(input())
print('{0:5f} {1:5f}'.format(r**2*math.pi,2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpezw6bk26/tmp23nupd6d.py", line 3, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s548344402 | p02400 | u829107115 | 1556529018 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | import math
r = int(input())
area = math.pi * r**2
length = 2 * math.pi * r
print(f"{area:.6f} {length:.6f}")
| Traceback (most recent call last):
File "/tmp/tmpy_zmsn37/tmpcz3ztcph.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s773839118 | p02400 | u829107115 | 1556529221 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | import math
p = input()
r = int(p)
area = math.pi * r ** 2
length = 2 * math.pi * r
print(f"{area:.6f} {length:.6f}")
| Traceback (most recent call last):
File "/tmp/tmp_v24ki5p/tmpiadjjuyh.py", line 3, in <module>
p = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s695179157 | p02400 | u610816226 | 1556625809 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | r= int(input())
print(r**2*math.pi, r*2*math.pi)
| Traceback (most recent call last):
File "/tmp/tmpt0u7fjjl/tmplvsl0g3p.py", line 1, in <module>
r= int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s870469294 | p02400 | u610816226 | 1556625943 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math
r= int(input())
print(r**2*math.pi, r*2*math.pi)
| Traceback (most recent call last):
File "/tmp/tmplek2u9bt/tmpr2e3j_e1.py", line 2, in <module>
r= int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s603585724 | p02400 | u610816226 | 1556626001 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math
r= int(input())
print(r**2*math.pi, r*2*math.pi)
| Traceback (most recent call last):
File "/tmp/tmp80i2m0vr/tmp3e6tkmq_.py", line 2, in <module>
r= int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s669044733 | p02400 | u610816226 | 1556626036 | 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/tmp6tbj69oy/tmpqcswhi15.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s917478718 | p02400 | u592365052 | 1556666748 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | import math
r = int(input())
s = r * r * math.pi
l = r * 2 * math.pi
print("{:f} {:f}".format(s, l))
| Traceback (most recent call last):
File "/tmp/tmpuywegz48/tmp3in_syse.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s896141113 | p02400 | u592365052 | 1556667739 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | import math
r = int(input())
s = r * r * math.pi
l = r * 2.0 * math.pi
print("{:f} {:f}".format(s, l))
| Traceback (most recent call last):
File "/tmp/tmpxyhzmkvw/tmp10eq7niv.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s707744443 | p02400 | u805716376 | 1556701332 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | import math
r = int(input())
print(f'{r**2*math.pi:.8f}')
| Traceback (most recent call last):
File "/tmp/tmpv6ss3gzd/tmpl5dvgdnv.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s295043593 | p02400 | u773889679 | 1556798965 | Python | Python3 | py | Runtime Error | 0 | 0 | 486 | #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <string>
#include <sstream>
#include <complex>
#include <vector>
#include <list>
#include <queue>
#include <deque>
#include <stack>
#include <map>
#include <set>
using namespace std;
typedef long long unsigned int ... | File "/tmp/tmpp4nfxhqc/tmpfd7w8btz.py", line 16
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s977295440 | p02400 | u777181309 | 1556848023 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | r = int(input())
print(2*r*np.pi, (r**2)*np.pi)
| Traceback (most recent call last):
File "/tmp/tmpzhecf82m/tmp25210s1r.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s997786682 | p02400 | u777181309 | 1556848154 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | r = float(input())
print(2*r*np.pi, (r**2)*np.pi)
| Traceback (most recent call last):
File "/tmp/tmppxnjxygu/tmpogx5ttqa.py", line 1, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s763807848 | p02400 | u777181309 | 1556848240 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import numpy as np
r = float(input())
print(2*r*np.pi, (r**2)*np.pi)
| Traceback (most recent call last):
File "/tmp/tmpzuocbe3s/tmpwi5e85oi.py", line 3, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s164046964 | p02400 | u520674325 | 1559022492 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r = int(input())
s = r*r*math.pi
l = 2*r*math.pi
print(s,l)
| Traceback (most recent call last):
File "/tmp/tmpxfq_595p/tmpo8yp_xd0.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s976991786 | p02400 | u520674325 | 1559022511 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r = int(input())
s = r*r*math.pi
l = 2*r*math.pi
print(s,l)
| Traceback (most recent call last):
File "/tmp/tmpbsnt0haw/tmp60ko1qyb.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s712500320 | p02400 | u629874472 | 1559030816 | 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/tmpw3zf80ib/tmppk2j458s.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s400992388 | p02400 | u629874472 | 1559030974 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | import math
r = int(input())
print("%.10f %.10f"%(r**2*math.pi,2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmp5waxo7_d/tmphodipxhi.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s415287663 | p02400 | u535719732 | 1559196231 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | r = int(input())
pi = 3.14159265359
print("%.6f %.6f" %(pi*r*r,2*pi*r))
| Traceback (most recent call last):
File "/tmp/tmpxsq0t40a/tmpj901mrjf.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s500675510 | p02400 | u839788696 | 1559365867 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r = int(input())
pi =math.pi
print(r*r*pi,2*r*pi)
| Traceback (most recent call last):
File "/tmp/tmp_98f8g3m/tmps5s3j3rl.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s964376926 | p02400 | u435158342 | 1559400357 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
a=int(input())
print('{0:.6f} {1:.6f}'.format(a*a*math.pi, (a+a)*math.pi))
| Traceback (most recent call last):
File "/tmp/tmp4bllrz_b/tmp6lr__0v_.py", line 2, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s975373636 | p02400 | u015712946 | 1559525026 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | from math import pi // 円周率
r = float(input())
area = r * r * pi
cir =(r+r) * pi
print(f'{(area):.6f} {(cir):.6f}')
| File "/tmp/tmp2h6redvg/tmpxahqf80r.py", line 1
from math import pi // 円周率
^^
SyntaxError: invalid syntax
| |
s253181261 | p02400 | u428848588 | 1559540304 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | from math import pi
r = float(input())
area = r * r * pi
cir = (r+r) * pi
pirnt(f'{(area):.6f} {(cir):.6f}')
| Traceback (most recent call last):
File "/tmp/tmp0nja7he8/tmpaxjjbrvy.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s764756910 | p02400 | u003684951 | 1559540327 | Python | Python | py | Runtime Error | 0 | 0 | 108 | from math import pi
r = float(input())
area = r * r * pi
cir =(r+r) * pi
print(f'{(area):.6f}{(cir):.6f}')
| Traceback (most recent call last):
File "/tmp/tmpki85lfya/tmpuppc2g35.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s633554795 | p02400 | u003684951 | 1559540512 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | from math import pi
r = float(input())
area = r * r * pi
cir =(r+r) * pi
print(f'{(area):.6 f}{(cir):.6 f}')
| Traceback (most recent call last):
File "/tmp/tmp4_lbtyf2/tmpb2v2zokp.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s285186164 | p02400 | u907094926 | 1405755746 | Python | Python | py | Runtime Error | 0 | 0 | 69 | r = float(raw_input())
print "%0.6f %0.6f" % (r * r * pi, 2 * pi * r) | File "/tmp/tmp3ruea7qz/tmpt2hw3_iw.py", line 2
print "%0.6f %0.6f" % (r * r * pi, 2 * pi * r)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s312943518 | p02400 | u630546605 | 1408647349 | Python | Python3 | py | Runtime Error | 0 | 0 | 162 | # Python 3+
import sys
import math
#file = open("test.txt")
file = sys.stdin
r = int(file.readline())
l = 2*math.pi*r
s = math.pi*r*r
print("%.6f %.6f"%(s, l)) | Traceback (most recent call last):
File "/tmp/tmp623p8jxy/tmpctoa6ktg.py", line 8, in <module>
r = int(file.readline())
^^^^^^^^^^^^^^^^^^^^
ValueError: invalid literal for int() with base 10: ''
| |
s704127527 | p02400 | u630546605 | 1408647707 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | import sys
import math
#file = open("test.txt")
file = sys.stdin
r = int(file.readline())
l = 2*math.pi*r
s = math.pi*r*r
print("%.6f %.6f"%(s, l))
sys.exit(0) | Traceback (most recent call last):
File "/tmp/tmp18_zwdik/tmpynfy6hcy.py", line 7, in <module>
r = int(file.readline())
^^^^^^^^^^^^^^^^^^^^
ValueError: invalid literal for int() with base 10: ''
| |
s067099279 | p02400 | u426030396 | 1409837463 | Python | Python | py | Runtime Error | 0 | 0 | 76 | import math
i=int(raw_input())
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi) | File "/tmp/tmpqkifach3/tmp51xw7df1.py", line 3
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s166907364 | p02400 | u426030396 | 1409837630 | Python | Python | py | Runtime Error | 0 | 0 | 76 | import math
i=int(raw_input())
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi) | File "/tmp/tmpuc_cjatb/tmp64q5s761.py", line 3
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s810462892 | p02400 | u426030396 | 1409837640 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import math
i=int(raw_input())
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi) | File "/tmp/tmpa22d72aq/tmp6nzade_4.py", line 3
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s108765403 | p02400 | u426030396 | 1409837923 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
i=float(raw_input())
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi) | File "/tmp/tmpkfdr0kdd/tmpnqas3iwn.py", line 3
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s842328398 | p02400 | u607831289 | 1415987912 | Python | Python | py | Runtime Error | 0 | 0 | 82 | from math import pi
r = int(raw_input())
print '%f %f' % (pi * r ** 2, 2 * pi * r) | File "/tmp/tmpqt9v0moj/tmpf7acvlpz.py", line 3
print '%f %f' % (pi * r ** 2, 2 * pi * r)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s748782163 | p02400 | u017764209 | 1417087122 | Python | Python | py | Runtime Error | 0 | 0 | 48 | r = input()
print '%.6f %.6' % (r*3.14,r*r*3.14) | File "/tmp/tmpzf3ohyv6/tmpshehnpjq.py", line 2
print '%.6f %.6' % (r*3.14,r*r*3.14)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s741514868 | p02400 | u017764209 | 1417088216 | Python | Python | py | Runtime Error | 0 | 0 | 57 | import math
print '%.6f %.6f' % (r*r*math.pi,2*r*math.pi) | File "/tmp/tmp7tjstz0d/tmph09qn6rf.py", line 2
print '%.6f %.6f' % (r*r*math.pi,2*r*math.pi)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s764796870 | p02400 | u580607517 | 1420281308 | Python | Python | py | Runtime Error | 0 | 0 | 121 | import math
a = int(raw_input())
b = (pow(a, 2) * math.pi)
c = 2 * a * math.pi
print format(b,"0.6f"), format(c, ".6f") | File "/tmp/tmpefspa9pq/tmp1tywamvf.py", line 7
print format(b,"0.6f"), format(c, ".6f")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s798012454 | p02400 | u580607517 | 1420281443 | Python | Python | py | Runtime Error | 0 | 0 | 120 | import math
a = int(raw_input())
b = (pow(a, 2) * math.pi)
c = 2 * a * math.pi
print format(b,"0.6f"), format(c, ".6f") | File "/tmp/tmpa7koi8mg/tmpi1gd7gv6.py", line 6
print format(b,"0.6f"), format(c, ".6f")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s187691403 | p02400 | u067975558 | 1422411743 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import math
r = int(input())
print(r * r * math.pi, r * 2 * math.pi) | Traceback (most recent call last):
File "/tmp/tmp3838q4nk/tmp5zd4eetz.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s681252868 | p02400 | u131984977 | 1422411784 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | from math import pi
r = int(input())
s = r * r * pi
l = r * 2 * pi
print(s, l) | Traceback (most recent call last):
File "/tmp/tmpjdy6feji/tmpznblqmhl.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s757395395 | p02400 | u067975558 | 1422411784 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | r = int(input())
p = from math import pi
print(r * r * p, r * 2 * p) | File "/tmp/tmpz2to9c_w/tmpz5ri4rg1.py", line 2
p = from math import pi
^^^^
SyntaxError: invalid syntax
| |
s955509113 | p02400 | u067975558 | 1422411853 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | r = int(input())
p = from math import pi
print('{0} {1:.6f}'.format(r * r * p, r * 2 * p)) | File "/tmp/tmpvo9w98rl/tmpskr2fb2n.py", line 2
p = from math import pi
^^^^
SyntaxError: invalid syntax
| |
s120325087 | p02400 | u131984977 | 1422411865 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
r = int(input())
s = r * r * math.pi
l = r * 2 * math.pi
print(s, l) | Traceback (most recent call last):
File "/tmp/tmp7san0sqm/tmp74p1hqsp.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s875332536 | p02400 | u067975558 | 1422411882 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | import math
r = int(input())
p = math.pi
print('{0} {1:.6f}'.format(r * r * p, r * 2 * p)) | Traceback (most recent call last):
File "/tmp/tmphajl1h_r/tmp9175a36l.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s486355618 | p02400 | u131984977 | 1422411968 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | pi = 3.141592653589793
r = int(input())
s = r * r * pi
l = r * 2 * pi
print(s, l) | Traceback (most recent call last):
File "/tmp/tmpyntt2gl1/tmpzxyc_0s8.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s180495011 | p02400 | u067975558 | 1422411999 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 |
r = int(input())
p = 3.14
print('{0} {1:.6f}'.format(r * r * p, r * 2 * p)) | Traceback (most recent call last):
File "/tmp/tmp_w1hr1p9/tmpf202fqrt.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s025212041 | p02400 | u823030818 | 1422412001 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | pi = 3.141592653589793
r = int(input().rstrip().split())
a = r * r * pi
b = r * pi
print(a, b) | Traceback (most recent call last):
File "/tmp/tmplneb2mnc/tmpsohgmxmy.py", line 3, in <module>
r = int(input().rstrip().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s955609609 | p02400 | u823030818 | 1422412141 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
r= float(input().rstrip().split(' ')
a = r * r * math
b = r * math
print(a, b) | File "/tmp/tmpxu53vqc8/tmpid31z50n.py", line 3
r= float(input().rstrip().split(' ')
^
SyntaxError: '(' was never closed
| |
s156802296 | p02400 | u823030818 | 1422412188 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | import math
r= float(input().rstrip().split(' ')
a = 2r * math
b = r * math
print(a, b) | File "/tmp/tmpids6vcwh/tmp3uur7gpm.py", line 5
a = 2r * math
^
SyntaxError: invalid decimal literal
| |
s791816438 | p02400 | u823030818 | 1422412246 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | import math
r= float(input().rstrip().split(' ')
a = 2r * math.PI
b = r * math.PI
print(a, b) | File "/tmp/tmp1spfbgug/tmpszc8al_t.py", line 5
a = 2r * math.PI
^
SyntaxError: invalid decimal literal
| |
s991280930 | p02400 | u823030818 | 1422412258 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | import math
r= float(input().rstrip().split(' ')
a = 2r * math.pi
b = r * math.pi
print(a, b) | File "/tmp/tmpntqmmueo/tmp8_h0f81z.py", line 5
a = 2r * math.pi
^
SyntaxError: invalid decimal literal
| |
s143383471 | p02400 | u823030818 | 1422412271 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | import math
r= float(input().rstrip().split(' ')
a = 2r * math.PI
b = r * math.PI
print(a, b) | File "/tmp/tmp_jjnrm4m/tmp7y4gi527.py", line 5
a = 2r * math.PI
^
SyntaxError: invalid decimal literal
| |
s622714581 | p02400 | u823030818 | 1422412382 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | import math
r= float(input().rstrip().split(' ')
a = r * 2math.PI
b = r * math.PI
print(a, b) | File "/tmp/tmp8o992cm1/tmpmmgcc2dm.py", line 5
a = r * 2math.PI
^
SyntaxError: invalid decimal literal
| |
s498942639 | p02400 | u823030818 | 1422412413 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | import math
r= float(input().rstrip().split(' ')
a = r * pi
b = r * pi
print(a, b) | File "/tmp/tmp3y85wm2d/tmp9h3ek_x1.py", line 3
r= float(input().rstrip().split(' ')
^
SyntaxError: '(' was never closed
| |
s032840560 | p02400 | u823030818 | 1422412452 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r= float(input().rstrip().split(' ')
a = r * 2pi
b = r * pi
print(a, b) | File "/tmp/tmp7j_b0j9w/tmpyz4q5c7c.py", line 5
a = r * 2pi
^
SyntaxError: invalid decimal literal
| |
s210618385 | p02400 | u823030818 | 1422412477 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
r= float(input().rstrip().split(' ')
a = 2 * pi * r
b = r * pi
print(a, b) | File "/tmp/tmppvorx0k4/tmp3elw6wqe.py", line 3
r= float(input().rstrip().split(' ')
^
SyntaxError: '(' was never closed
| |
s332332261 | p02400 | u823030818 | 1422412509 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | import math
r= float(input().rstrip().split(' ')
a = 2 * pi * r
b = 2pir
print(a, b) | File "/tmp/tmpohvd0x47/tmp8oqc1059.py", line 7
b = 2pir
^
SyntaxError: invalid decimal literal
| |
s764673208 | p02400 | u823030818 | 1422412539 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
r= float(input().rstrip().split(' ')
a = r * r * pi
b = 2 * pi * r
print(a, b) | File "/tmp/tmpkdp86hms/tmp08_v7rx5.py", line 3
r= float(input().rstrip().split(' ')
^
SyntaxError: '(' was never closed
| |
s532303890 | p02400 | u823030818 | 1422412595 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r= float(input())
a = r * r * pi
b = 2 * pi * r
print(a, b) | Traceback (most recent call last):
File "/tmp/tmppsfev93s/tmpdpd587cy.py", line 3, in <module>
r= float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s482483791 | p02400 | u297342993 | 1422412929 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | import math
r = float(input())
x = 2 * Math.pi * r
y = r / 2 * r / 2 * Math.pi
print('{0:.6f} {1:.6f}'.format(x,y)) | Traceback (most recent call last):
File "/tmp/tmpbl9kbkca/tmpv0ezlq8b.py", line 3, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s307317428 | p02400 | u297342993 | 1422413068 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | import math
r = float(input())
x = 2 * math.pi * r
y = r / 2 * r / 2 * Math.pi
print('{0:.6f} {1:.6f}'.format(x,y)) | Traceback (most recent call last):
File "/tmp/tmp3x_vjnly/tmp0cbv6dgv.py", line 3, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s120508969 | p02400 | u744114948 | 1423743608 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r=int(input())
print("{:6f} {:6f}".format(r**2*math.pi,r*2*math.pi)) | Traceback (most recent call last):
File "/tmp/tmpz_wn_uts/tmp7za1zjti.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s438038004 | p02400 | u744114948 | 1423743647 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r=int(input())
print("{:0.6f} {:0.6f}".format(r**2*math.pi,r*2*math.pi)) | Traceback (most recent call last):
File "/tmp/tmp0pyhgs46/tmp90kgy2ow.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s172424894 | p02400 | u744114948 | 1423743851 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | r=int(input())
print("{:0.6f} {:0.6f}".format(r**2*3.14159265,r*2*3.14159265)) | Traceback (most recent call last):
File "/tmp/tmpynqlkghm/tmp1efztdn1.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s234670930 | p02400 | u744114948 | 1423743883 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
r=int(input())
print("{:6f} {:6f}".format(r*r*math.pi,r*2*math.pi)) | Traceback (most recent call last):
File "/tmp/tmp3871ck3i/tmpbk0iynj1.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s145230143 | p02400 | u744114948 | 1423743929 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r=int(input())
print("{} {}".format(r*r*math.pi,r*2*math.pi)) | Traceback (most recent call last):
File "/tmp/tmp3ezzubjo/tmpwct2cumf.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s293665645 | p02400 | u355726239 | 1426519995 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import math
PI = math.pi
r = int(input())
s = PI*r**2
l = 2*r*PI
print('%.6f %.6f' % (s, l)) | Traceback (most recent call last):
File "/tmp/tmph4brobfp/tmpb3i5zjd5.py", line 7, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s979934225 | p02400 | u949338836 | 1427202085 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | #coding:utf-8
#1_4_B 2015.3.24
import math
r = int(input())
area = r ** 2 * math.pi
circumference = 2 * r * math.pi
print('{0:.6f} {1:.6f}'.format(area,circumference)) | Traceback (most recent call last):
File "/tmp/tmp9un95xs5/tmpjhdyi9sf.py", line 4, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s919258371 | p02400 | u137212517 | 1429544952 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | import math
r = int(input())
print(r * r * math.pi, 2 * r * math.pi) | Traceback (most recent call last):
File "/tmp/tmp8ruepcvt/tmpj37qml9m.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s916459969 | p02400 | u137212517 | 1429545011 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | import math
r = int(input())
print(r * r * math.pi, 2 * r * math.pi) | Traceback (most recent call last):
File "/tmp/tmpbajavq2j/tmpo7umixnv.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s167363491 | p02400 | u137212517 | 1429545076 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | import math
r = int(input())
print(r * r * math.pi, 2 * r * math.pi) | Traceback (most recent call last):
File "/tmp/tmpivlojbr3/tmpdkh63qo0.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s805858443 | p02400 | u137212517 | 1429545247 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | import math
r = int(input())
print(3.14, 3.14) | Traceback (most recent call last):
File "/tmp/tmpk0ju3t5c/tmpw3fvuj91.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s318606411 | p02400 | u137212517 | 1429545473 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | import math
r = int(input())
print(22, 222) | Traceback (most recent call last):
File "/tmp/tmppb6yrtjo/tmpuoms061a.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s077252488 | p02400 | u137212517 | 1429545537 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | r = int(input())
print(2, 2) | Traceback (most recent call last):
File "/tmp/tmpdjdf5ut0/tmp2mlwha_r.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s065662117 | p02400 | u454022848 | 1430269206 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math as m
r=int(input())
print("%.6f"%(r**2*m.pi),"%.6f"%(r*2*m.pi)) | Traceback (most recent call last):
File "/tmp/tmpnzsukzb1/tmpu1t4_8gn.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s661669468 | p02400 | u454022848 | 1430269239 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math as m
r=int(input())
print("%.6f"%(r**2*m.pi),"%.6f"%(r*2*m.pi)) | Traceback (most recent call last):
File "/tmp/tmpfkn516lu/tmpiks_dqjx.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s240123592 | p02400 | u454022848 | 1430269281 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import math
r=int(input())
print("%.6f"%(r**2*math.pi),"%.6f"%(r*2*math.pi)) | Traceback (most recent call last):
File "/tmp/tmpt6o764us/tmp7syw2pv4.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s588553003 | p02400 | u777299405 | 1434003196 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(input())
print(r * r * math.pi, 2 * r * math.pi) | Traceback (most recent call last):
File "/tmp/tmpgritju81/tmpsxa0iyn3.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s288233341 | p02400 | u777299405 | 1434003293 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | from math import pi
r = float(input())
print(r * r * math.pi, 2 * r * math.pi) | Traceback (most recent call last):
File "/tmp/tmpjh_y3f6x/tmpxuvfwbj3.py", line 3, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s820498851 | p02400 | u571345655 | 1434461960 | Python | Python | py | Runtime Error | 0 | 0 | 116 | # coding=utf-8
from math import pi
r = float(raw_input().split())
print "{0:f} {1:f}".format(pi * r * r, 2 * pi * r) | File "/tmp/tmp6azqax4f/tmpk7hlhty6.py", line 4
print "{0:f} {1:f}".format(pi * r * r, 2 * pi * r)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s652880405 | p02400 | u172616925 | 1435323825 | Python | Python | py | Runtime Error | 0 | 0 | 101 | import math
r = map(float, raw_input())
a = r * r * math.pi
b = 2 * r * math.pi
print "%f %f" % (a,b) | File "/tmp/tmp8zppa34p/tmpuyar9_71.py", line 5
print "%f %f" % (a,b)
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s691944212 | p02400 | u172616925 | 1435323854 | Python | Python | py | Runtime Error | 0 | 0 | 110 | import math
r = map(float, raw_input())
a = r[0] * r[0] * math.pi
b = 2 * r[0] * math.pi
print "%f %f" % (a,b) | File "/tmp/tmp2i3a9phl/tmpeh3m0xcu.py", line 5
print "%f %f" % (a,b)
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s982899119 | p02400 | u609407244 | 1436076867 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r = int(input())
print('%.7f %.7f' % (r * r * math.pi, 2 * r * math.pi)) | Traceback (most recent call last):
File "/tmp/tmphdn150ua/tmpm0out1ra.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s254970348 | p02400 | u614711522 | 1439168039 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | import math
r = float( input())
s = r * r * math.PI
l = ( r + r) * math.PI
print( '{0:.5f} {1:.5f}'.format( s, l)) | Traceback (most recent call last):
File "/tmp/tmptyt21z2m/tmpg9z8svsl.py", line 3, in <module>
r = float( input())
^^^^^^^
EOFError: EOF when reading a line
| |
s681088669 | p02400 | u152353734 | 1439772429 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r = fr
s = math.pi
l =
print('%.5f %.5f' % (s, l)) | File "/tmp/tmpdezo3dxm/tmp9liy0oa1.py", line 4
l =
^
SyntaxError: invalid syntax
| |
s152268303 | p02400 | u152353734 | 1439834340 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r = int(input())
print('%.5f %.5f' % (r * r * math.pi, 2 * r * math.pi)) | Traceback (most recent call last):
File "/tmp/tmp8qq2htat/tmptq2nh4s9.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s459080435 | p02400 | u501414488 | 1439855351 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | import math
r = float(import())
s = r * r * math.pi
l = r * 2 * math.pi
print('%.5f %.5f' % (s, l)) | File "/tmp/tmp4pn7eq4g/tmprefiwcaj.py", line 2
r = float(import())
^^^^^^
SyntaxError: invalid syntax
| |
s293800778 | p02400 | u501414488 | 1439855409 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = float(imput())
s = r * r * math.pi
l = r * 2 * math.pi
print('%.5f %.5f' % (s, l)) | Traceback (most recent call last):
File "/tmp/tmp0riaq121/tmpw8pcm77g.py", line 2, in <module>
r = float(imput())
^^^^^
NameError: name 'imput' is not defined. Did you mean: 'input'?
| |
s130906717 | p02400 | u501414488 | 1439855428 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | import math
r = float(input())
s = r * r * math.pi
l = r * 2 * math.pi
print('%.5f %.5f' % (s, l))(a, b) | Traceback (most recent call last):
File "/tmp/tmpmn1rj2v4/tmp6mj0h8yw.py", line 2, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s491263626 | p02400 | u997158994 | 1441016206 | Python | Python | py | Runtime Error | 0 | 0 | 73 | from math import pi
r=int(raw_input())
print ("%f %f" %(pi*r**2, 2*pi*r)) | Traceback (most recent call last):
File "/tmp/tmp_c5uid8m/tmp5qvpm4s8.py", line 2, in <module>
r=int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s593656588 | p02400 | u734743631 | 1442545847 | Python | Python | py | Runtime Error | 0 | 0 | 81 | import math
r = int(raw_input())
print "%f %f"%(math.pi * r * r, 2 * math.pi * r) | File "/tmp/tmpptdyukns/tmpo1p_uggx.py", line 3
print "%f %f"%(math.pi * r * r, 2 * math.pi * r)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s072746606 | p02400 | u072053884 | 1442827921 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | import math
r = input()
r = int(r)
area = math.pi * (r ** 2)
length = 2 * math.pi * r
print("{0:.5f} {1:.5f}".format(area, length)) | Traceback (most recent call last):
File "/tmp/tmphgsncz0u/tmpnazsdurz.py", line 3, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s495234240 | p02400 | u180914582 | 1443513589 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | import math
??
r = input()
r = float(r)
??
area = math.pi * (r ** 2)
length = 2 * math.pi * r
??
print("{0:.5f} {1:.5f}".format(area, length)) | File "/tmp/tmpqd80gjau/tmpijacee5c.py", line 2
??
^
SyntaxError: invalid syntax
| |
s121591399 | p02400 | u313994256 | 1443924929 | Python | Python | py | Runtime Error | 0 | 0 | 100 | r = map(int,raw_input().split())
print r[0]*r[0]*3.141592653589793
print r[0]*2*3.141592653589793 | File "/tmp/tmpabjjmj9h/tmpkese18ss.py", line 2
print r[0]*r[0]*3.141592653589793
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s806670405 | p02400 | u278714855 | 1446003204 | Python | Python | py | Runtime Error | 0 | 0 | 84 | import math
r=int(raw_input())
s=float(r)*r*math.pi
l=float(r)*2*math.pi
print s,l | File "/tmp/tmp3qyfu2_o/tmpdaov0yjr.py", line 6
print s,l
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s864092543 | p02400 | u695952004 | 1447517912 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | import math
r = int(input())
print('%f %f' %(r ** 2 * math.pi, r * 2 * math.pi)) | Traceback (most recent call last):
File "/tmp/tmp734f6rea/tmp18p7mfzg.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s711574000 | p02400 | u775586391 | 1447782798 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | from math import pi
r = int(input())
d = pi*r*r
l = 2*pi*r
print(d,l) | Traceback (most recent call last):
File "/tmp/tmpvnacc9o2/tmpppea04xs.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.