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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s222415159 | p02400 | u992449685 | 1535291575 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(2 * pi * r, pi * r ** 2))
| Traceback (most recent call last):
File "/tmp/tmpojtupd_x/tmpoi_hjofp.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s801205374 | p02400 | u992449685 | 1535291642 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(2 * pi * r, pi * r ** 2))
| Traceback (most recent call last):
File "/tmp/tmpwpd6z2ju/tmpa8o60ps0.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s873270628 | p02400 | u992449685 | 1535291737 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | pi = 3.1415926535
r = int(input())
print("{:.6f} {:.6f}".format(2 * pi * r, pi * r ** 2))
| Traceback (most recent call last):
File "/tmp/tmp9r41b0ju/tmp8imnuoce.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s848480480 | p02400 | u365921604 | 1535507686 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | import math
r = int(input())
print(round(r**2 * math.pi, 6), round(r * 2 * math.pi, 6))
| Traceback (most recent call last):
File "/tmp/tmplhmp358_/tmpim8510wj.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s175171329 | p02400 | u096070545 | 1535626912 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | # coding: utf-8
# Your code here!
# ITP1_4_B
import math
r=int(input())
print(r*r*math.pi)
print(r*2*math.pi)
| Traceback (most recent call last):
File "/tmp/tmpohwpdch8/tmpkrmzo075.py", line 7, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s063635451 | p02400 | u277375424 | 1540211243 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r = int(input())
print(math.pi*r**2 + " "+ 2*math.pi*r**2)
| Traceback (most recent call last):
File "/tmp/tmpe3odnlcv/tmpyeoiijhu.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s523495928 | p02400 | u277375424 | 1540211527 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import math
r = int(input())
x = math.pi
print(x*r**2 + " "+ 2x**r**2)
| File "/tmp/tmp2n2pk_o9/tmpsya64_4i.py", line 6
print(x*r**2 + " "+ 2x**r**2)
^
SyntaxError: invalid decimal literal
| |
s827778994 | p02400 | u277375424 | 1540211646 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r = int(input())
x = math.pi
print(x*r**2 + " "+ 2x**r)
| File "/tmp/tmpf8nmd2kl/tmpgk_apkdq.py", line 6
print(x*r**2 + " "+ 2x**r)
^
SyntaxError: invalid decimal literal
| |
s061800669 | p02400 | u277375424 | 1540211660 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | import math
r = int(input())
x = math.pi
print(x*r**2 + " "+ 2*x**r)
| Traceback (most recent call last):
File "/tmp/tmpphlt5uen/tmpur7ec67i.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s137040140 | p02400 | u277375424 | 1540211679 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r = int(input())
x = math.pi
print(x*r*r + " "+ 2*x**r)
| Traceback (most recent call last):
File "/tmp/tmpfx1paqrb/tmp3dkjisit.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s735997964 | p02400 | u277375424 | 1540211738 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r = float(input())
x = math.pi
print(x*r*r + " "+ 2*x**r)
| Traceback (most recent call last):
File "/tmp/tmp_l6kbtxr/tmpwt0gd0dt.py", line 3, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s202791088 | p02400 | u823513038 | 1540277874 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | r = int(input())
pi = 3.141592653589793238
print(pi * r * r, 2 * pi * r)
| Traceback (most recent call last):
File "/tmp/tmp_k9vq_3k/tmpgym_eiup.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s157204885 | p02400 | u281808376 | 1540294628 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | r=int(input())
print("{} {}".format(2*r*pi,r*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpgrogz_6n/tmpwdsi7uu2.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s795373397 | p02400 | u281808376 | 1540294648 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | r=input()
print("{} {}".format(2*r*pi,r*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpx4g3pw6o/tmpcbcwze_y.py", line 1, in <module>
r=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s845788851 | p02400 | u281808376 | 1540294702 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | import math
r=input()
print("{} {}".format(2*r*pi,r*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpp2qhkjwq/tmp6n8_g3k2.py", line 2, in <module>
r=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s429161415 | p02400 | u281808376 | 1540294729 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r=input()
print("{} {}".format(2*r*math.pi,r*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmpijbk5xdy/tmplmsg36zn.py", line 2, in <module>
r=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s990321142 | p02400 | u281808376 | 1540294844 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | import math
pi=format(:.5,math.pi)
r=input()
print("{} {}".format(2*r*pi,r*r*pi))
| File "/tmp/tmp0jd4xtcm/tmpk64vxlvt.py", line 2
pi=format(:.5,math.pi)
^
SyntaxError: invalid syntax
| |
s560698789 | p02400 | u281808376 | 1540294996 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
pi=round(math.pi,7)
r=input()
print("{} {}".format(2*r*pi,r*r*pi))
| Traceback (most recent call last):
File "/tmp/tmpp6m58o4y/tmpas84xktr.py", line 3, in <module>
r=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s272125130 | p02400 | u281808376 | 1540295035 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | import math
pi=round(math.pi,7)
r=input()
print(2*r*pi r*r*pi)
| File "/tmp/tmphzlivo4g/tmph15z3ue5.py", line 4
print(2*r*pi r*r*pi)
^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s651412109 | p02400 | u281808376 | 1540295284 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import math
pi=round(math.pi,7)
length=str(round(r*2*pi,6))
area=str(round(r**2*pi,6))
print("{} {}".format(length,area))
| Traceback (most recent call last):
File "/tmp/tmpqfzu76iu/tmpnl42f5sm.py", line 3, in <module>
length=str(round(r*2*pi,6))
^
NameError: name 'r' is not defined
| |
s875754256 | p02400 | u281808376 | 1540295300 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | import math
r=input()
pi=round(math.pi,7)
length=str(round(r*2*pi,6))
area=str(round(r**2*pi,6))
print("{} {}".format(length,area))
| Traceback (most recent call last):
File "/tmp/tmpld3v4s70/tmpupbwzmzk.py", line 2, in <module>
r=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s693837498 | p02400 | u281808376 | 1540295701 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | import math
r=int(input())
pi=round(math.pi,7)
length=str(round(r*2*pi,6))
area=str(round(r**2*pi,6))
print("{} {}".format(length,area))
| Traceback (most recent call last):
File "/tmp/tmpqjmry764/tmpfl_cwzs_.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s166964852 | p02400 | u281808376 | 1540295731 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | r=int(input())
import math
pi=round(math.pi,7)
length=str(round(r*2*pi,6))
area=str(round(r**2*pi,6))
print("{} {}".format(length,area))
| Traceback (most recent call last):
File "/tmp/tmpmwoxkskl/tmpc8rmfai1.py", line 1, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s307479461 | p02400 | u281808376 | 1540296810 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | r=float(input())
import math
pi=round(math.pi,7)
length=round(r*2*pi,6)
area=round(r**2*pi,6)
print(float(length)+" "+float(area))
| Traceback (most recent call last):
File "/tmp/tmpdkskbiu5/tmp9f0zhyqr.py", line 1, in <module>
r=float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s258209890 | p02400 | u075006557 | 1540456622 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | a = int(input())
print("%.6f %,6f"%(a*a*3.1415926535, 2*a*3.1415946535))
| Traceback (most recent call last):
File "/tmp/tmpb4p8dw3i/tmpugk6nz0b.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s780245795 | p02400 | u075006557 | 1540456899 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x = float(input())
print("%.6f %.6"%(a*a*3.14159265, a*2*3.14159265))
| Traceback (most recent call last):
File "/tmp/tmpocnc6_7x/tmpsb3j57y1.py", line 1, in <module>
x = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s601597980 | p02400 | u075006557 | 1540456973 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | x = float(input())
print("%.6f %.6"%(x*x*3.141592, x*2*3.141592))
| Traceback (most recent call last):
File "/tmp/tmpsgskbovg/tmpqrarc5b6.py", line 1, in <module>
x = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s450333079 | p02400 | u901205536 | 1540814448 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
r = int(input())
print("%.5f %.5f" % (math.pi*r *r, 2*math.pi*r))
| Traceback (most recent call last):
File "/tmp/tmppuc73ryl/tmpt1kda3qq.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s483028110 | p02400 | u260980560 | 1540906873 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | pi = 3.1415926535897
r = int(input())
print(pi*r**2, 2*pi*r)
| Traceback (most recent call last):
File "/tmp/tmp9aotrnnw/tmpygxbyq6h.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s728139403 | p02400 | u596993252 | 1541060876 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a=int(input())
p=3.141592;
print("{0:.6f} {1:.6f}".format(a*a*p,a*2*p))
| Traceback (most recent call last):
File "/tmp/tmpd09x1gb0/tmp8j252lmb.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s398162403 | p02400 | u596993252 | 1541060913 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a=int(input())
p=3.141592;
print("{0:.9f} {1:.9f}".format(a*a*p,a*2*p))
| Traceback (most recent call last):
File "/tmp/tmpxsn52udg/tmpk19ne548.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s123279443 | p02400 | u921810101 | 1541060954 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | from math import pi
r = int(input())
print(pi*r**2, 2*pi*r)
| Traceback (most recent call last):
File "/tmp/tmpw300yud_/tmpk_iwns8h.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s034997620 | p02400 | u921810101 | 1541060973 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | import math
pi = math.pi
r = int(input())
print(pi*r**2, 2*pi*r)
| Traceback (most recent call last):
File "/tmp/tmprfplehre/tmpmglpngvx.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s903654823 | p02400 | u596993252 | 1541060977 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a=int(input())
p=3.141592
print("{0:.9f} {1:.9f}".format(a*a*p,a*2*p))
| Traceback (most recent call last):
File "/tmp/tmpjnve6mpz/tmpml13ukaw.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s439693274 | p02400 | u513141069 | 1541060996 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b = map(int, input().split())
print("{0} {1} {2:.8f}".format(a // b, a % b, a / b))
| Traceback (most recent call last):
File "/tmp/tmpsehn00m8/tmp94uau345.py", line 1, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s515912126 | p02400 | u921810101 | 1541061016 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
pi = math.pi
r = int(input())
print(pi*r*r, 2*pi*r)
| Traceback (most recent call last):
File "/tmp/tmpbi675ed9/tmpb5k9hf3e.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s202209697 | p02400 | u513141069 | 1541061021 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
r = int(input())
print(f'{math.pi * r ** 2} {2 * math.pi * r}')
| Traceback (most recent call last):
File "/tmp/tmpvxh1vtrp/tmpioaib861.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s005641484 | p02400 | u596993252 | 1541061029 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a=int(input())
p=3.141592
print("{0:.8f} {1:.8f}".format(a*a*p,a*2*p))
| Traceback (most recent call last):
File "/tmp/tmpc9sptvqs/tmpn2atp6r4.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s658031210 | p02400 | u861678859 | 1541061040 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | p = 3.141592
r = int(input())
print("{0:.6f}{1:.6f}",format(r*2 * p,2 * r * p))
| Traceback (most recent call last):
File "/tmp/tmpy33zpzhu/tmphfo9qcou.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s624276079 | p02400 | u035064179 | 1541061094 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import <math.h>
r = float(input())
a = math.pi * r * r
l = 2 * math.pi * r
print(f'{a} {l}')
| File "/tmp/tmp7xf3hqqf/tmpvd_3_jq_.py", line 1
import <math.h>
^
SyntaxError: invalid syntax
| |
s584490867 | p02400 | u861678859 | 1541061237 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r = float(input())
print(f'{math.pi * r ** 2} {2 * math,pi * r}')
| Traceback (most recent call last):
File "/tmp/tmp3g3aui0n/tmp9ydk4jnv.py", line 3, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s485851262 | p02400 | u587288800 | 1541061270 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r = int(input())
print(f' {math.pi * r ** 2} {math.pi * r * 2}')
| Traceback (most recent call last):
File "/tmp/tmpns3uugup/tmp67vymg4q.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s068425639 | p02400 | u587288800 | 1541061310 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
r = int(input())
print(f' {math.pi * r ** 2}{math.pi * r * 2}')
| Traceback (most recent call last):
File "/tmp/tmphu1kllq0/tmp4q40dmdn.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s190801068 | p02400 | u587288800 | 1541061357 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
r = floatinput())
print(f' {math.pi * r ** 2} {math.pi * r * 2}')
| File "/tmp/tmp4_rrdaio/tmpa79qu9pw.py", line 3
r = floatinput())
^
SyntaxError: unmatched ')'
| |
s144634557 | p02400 | u109843748 | 1545483683 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import sys,math
def solve():
a, = map(int,input().split())
print(a**2*math.pi ,a*2*math.pi)
solve()
| Traceback (most recent call last):
File "/tmp/tmpawb06_6j/tmpgax0dcrm.py", line 7, in <module>
solve()
File "/tmp/tmpawb06_6j/tmpgax0dcrm.py", line 4, in solve
a, = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s524247681 | p02400 | u962909487 | 1545837529 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | r = int,input()
area = "{:.6f}".format(π*(r*r))
circumference = "{:.6f}".format(2*π*r)
print(area, circumference)
| Traceback (most recent call last):
File "/tmp/tmp3xcby8zs/tmp6lp0gt8l.py", line 1, in <module>
r = int,input()
^^^^^^^
EOFError: EOF when reading a line
| |
s222756477 | p02400 | u962909487 | 1545837584 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | r = int(input())
area = "{:.6f}".format(π*(r*r))
circumference = "{:.6f}".format(2*π*r)
print(area, circumference)
| Traceback (most recent call last):
File "/tmp/tmp4vb5n6nn/tmpccum_lat.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s516830347 | p02400 | u962909487 | 1545837633 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | r = int(input())
print("{:.6f}".format(π*(r*r)),"{:.6f}".format(2*π*r))
| Traceback (most recent call last):
File "/tmp/tmp0ms1e3y4/tmpat__9fjg.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s777021027 | p02400 | u962909487 | 1545837688 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | r = int(input())
area = "{:.6f}".format(math.pi*(r*r))
circumference = "{:.6f}".format(2*r*math.pi)
print(area, circumference)
| Traceback (most recent call last):
File "/tmp/tmpgt_2ijgx/tmpxtayily_.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s901096827 | p02400 | u962909487 | 1545837717 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | import math
r = int(input())
area = "{:.6f}".format(math.pi*(r*r))
circumference = "{:.6f}".format(2*r*math.pi)
print(area, circumference)
| Traceback (most recent call last):
File "/tmp/tmpj1urp5aq/tmp0obb8v07.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s895969059 | p02400 | u643542669 | 1545873334 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(inpu())
print(r ** 2 * math.pi, r * 2 * math.pi)
| Traceback (most recent call last):
File "/tmp/tmprue_v342/tmpau_q1wk1.py", line 2, in <module>
r = int(inpu())
^^^^
NameError: name 'inpu' is not defined. Did you mean: 'input'?
| |
s802858500 | p02400 | u643542669 | 1545873342 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import math
r = int(input())
print(r ** 2 * math.pi, r * 2 * math.pi)
| Traceback (most recent call last):
File "/tmp/tmpbun_dwx2/tmp9qerxg7k.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s746052086 | p02400 | u643542669 | 1545873418 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r = int(input())
print(r ** 2 * math.pi, r * 2 * math.pi)
| Traceback (most recent call last):
File "/tmp/tmp8s7h4u0h/tmp5ktgy44m.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s075858822 | p02400 | u643542669 | 1545873488 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | import math
r = input()
print(r ** 2 * math.pi, r * 2 * math.pi)
| Traceback (most recent call last):
File "/tmp/tmp0rmcal5z/tmpwew68pt6.py", line 3, in <module>
r = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s927232629 | p02400 | u316246166 | 1545906857 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a = int(input())
print(a * a * pi, 2* a * pi)
| Traceback (most recent call last):
File "/tmp/tmpjew4z_41/tmpwwyvq4or.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s894302766 | p02400 | u316246166 | 1545906877 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a = input()
a = int(a)
print(a * a * pi, 2* a * pi)
| Traceback (most recent call last):
File "/tmp/tmpu3qeos6l/tmptj_rp93c.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s856780838 | p02400 | u316246166 | 1545906940 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a = float(input())
print(a * a * pi, 2* a * pi)
| Traceback (most recent call last):
File "/tmp/tmp0utg_3aq/tmp6j9m9h_o.py", line 1, in <module>
a = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s751929783 | p02400 | u550922601 | 1546167751 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 |
import math
pai = math.pi
print(pai)
r = int(input())
print('{:.6f} {:.6f}'.format(pai*r**2,2*pai*r))
| Traceback (most recent call last):
File "/tmp/tmpdpkkxnzh/tmpcluwusfc.py", line 8, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| 3.141592653589793
|
s169092138 | p02400 | u550922601 | 1546167801 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
pai = math.pi
r = int(input())
print('{:.6f} {:.6f}'.format(pai*r**2,2*pai*r))
| Traceback (most recent call last):
File "/tmp/tmpoz2d3zrk/tmpz8f69k5p.py", line 5, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s915753108 | p02400 | u550922601 | 1546167881 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
pai = math.pi
r = int(input())
print('{:.6f} {:.6f}'.format(pai*r**2,2*pai*r))
| Traceback (most recent call last):
File "/tmp/tmpxwb6vxwa/tmpble1_hg3.py", line 5, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s154597804 | p02400 | u598393390 | 1551246147 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | from math import pi
r = int(input())
print(r ** 2 * pi, 2 * r * pi)
| Traceback (most recent call last):
File "/tmp/tmpnxg39dsa/tmpucnr5pb6.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s156665049 | p02400 | u733357255 | 1551448114 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 |
pi = 3.141592653589
r = float(input())
print("{.5f} {.5f}".format(r*r*pi,2*pi*r))
| Traceback (most recent call last):
File "/tmp/tmpuok4dvq6/tmp4mhq3mkq.py", line 4, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s890962513 | p02400 | u733357255 | 1551508070 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 |
pi = 3.141592653589
r = float(input())
print("{.5f} {.5f}".format(r*r*pi,2*pi*r))
| Traceback (most recent call last):
File "/tmp/tmp7xrxch_a/tmpe5wjyobf.py", line 4, in <module>
r = float(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s043465457 | p02400 | u733357255 | 1551508335 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 |
pi = 3.141592653589
r = float(input())
print(r*r*pi,2*pi*r
| File "/tmp/tmphvyw40ae/tmpp00yobmv.py", line 6
print(r*r*pi,2*pi*r
^
SyntaxError: '(' was never closed
| |
s580771518 | p02400 | u175224634 | 1551538000 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a = map(int, input().split())
print(f'{2 * a * 3.141592653589}')
print(f'{a * a * 3.141592653589}')
| Traceback (most recent call last):
File "/tmp/tmp3kacscit/tmpf9nk3wlu.py", line 1, in <module>
a = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s788573113 | p02400 | u175224634 | 1551539322 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a = map(int, input().split())
print(f'{2 * a * 3.1415926}')
print(f'{a * a * 3.1415926}')
| Traceback (most recent call last):
File "/tmp/tmp6l1l6iap/tmp_nfog005.py", line 1, in <module>
a = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s831580934 | p02400 | u175224634 | 1551539358 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a = map(int, input().split())
print(f'{a * a * 3.1415926}')
print(f'{2 * a * 3.1415926}')
| Traceback (most recent call last):
File "/tmp/tmpls3_a5wx/tmpipl0psdx.py", line 1, in <module>
a = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s076340987 | p02400 | u175224634 | 1551539391 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = map(float, input().split())
print(f'{a * a * 3.1415926}')
print(f'{2 * a * 3.1415926}')
| Traceback (most recent call last):
File "/tmp/tmpg8kv6l3f/tmpbl4q28v8.py", line 1, in <module>
a = map(float, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s114002553 | p02400 | u175224634 | 1551539503 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = map(float, input().split())
print(f'{a * a * 3.1415926}')
print(f'{2 * a * 3.1415926}')
| Traceback (most recent call last):
File "/tmp/tmpss09mw_q/tmpr72h1vwo.py", line 1, in <module>
a = map(float, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s158305972 | p02400 | u175224634 | 1551539582 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a = map(float, input().split())
print(f'{a * a * 3.1415926} {2 * a * 3.1415926}')
| Traceback (most recent call last):
File "/tmp/tmpjly7zu38/tmpkh50klpj.py", line 1, in <module>
a = map(float, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s248942113 | p02400 | u175224634 | 1551539633 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a = list(map(float, input().split()))
print(f'{a * a * 3.1415926} {2 * a * 3.1415926}')
| Traceback (most recent call last):
File "/tmp/tmpseh27wbv/tmprdupedu5.py", line 1, in <module>
a = list(map(float, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s552212648 | p02400 | u984892564 | 1551543730 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | string = input()
number = int(string[0])
print(number^2*3.14159, number*2*3.14159)
| Traceback (most recent call last):
File "/tmp/tmp9n600rqv/tmpoyzj042o.py", line 1, in <module>
string = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s634781279 | p02400 | u967268722 | 1555776452 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | s = float(i)**2 * 3.14159265359
l = float(i)*2*3.14159265359
print(s, l)
| Traceback (most recent call last):
File "/tmp/tmp_qsdtp8w/tmp4jli7kat.py", line 1, in <module>
s = float(i)**2 * 3.14159265359
^
NameError: name 'i' is not defined. Did you mean: 'id'?
| |
s439170230 | p02400 | u638889288 | 1555899181 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | imporot math
r=float(input())
print("%0.5f %0.5f" %(r*r*math.pi,2*r*math.pi))
| File "/tmp/tmpb8k528ky/tmpttgts_56.py", line 1
imporot math
^^^^
SyntaxError: invalid syntax
| |
s105619101 | p02400 | u605451279 | 1555935391 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | 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/tmpis3dxna9/tmpjqu6k3le.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s561593286 | p02400 | u605451279 | 1555935993 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import math
r = int(input())
s = '{:.6f}'.format(r * r * math.pi)
l = '{:.6f}'.format(2 * r * math.pi)
print(s,l)
| Traceback (most recent call last):
File "/tmp/tmpz62nyg8l/tmpmxw9hlfw.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s799296094 | p02400 | u227363693 | 1555997809 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
print("{:.6f}".format(r*r*math.pi), "{:.6f}".format(2*r*math.pi))
| Traceback (most recent call last):
File "/tmp/tmp5vr582oz/tmp3t184d_i.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s579973324 | p02400 | u780342333 | 1556021444 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | pi = 3.14159265359
r = int(input())
print(f"{r*r*pi:.6f} {2*r*pi:.6f}")
| Traceback (most recent call last):
File "/tmp/tmp_fa91n4c/tmplpitwn35.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s671312609 | p02400 | u780342333 | 1556021528 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | pi = 3.14159265359
r = int(input())
print(f"{r*r*pi:.6f} {2*r*pi:.6f}")
| Traceback (most recent call last):
File "/tmp/tmpada14uls/tmpy83qvnzq.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s894633553 | p02400 | u229478139 | 1556025156 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r = int(input())
print('{:.5f} {:.5f}'.format(math.pi*r*r, 2*math.pi*r))
| Traceback (most recent call last):
File "/tmp/tmpjhmvyo_9/tmpw8co6ta3.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s133175075 | p02400 | u037441960 | 1556031099 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | import math
r = int(input())
s = r ** 2 * math.pi
l = 2 * r * math.pi
print("{:.5f}".format(s), "{:.5f}".format(l))
| Traceback (most recent call last):
File "/tmp/tmp4tohkeop/tmp7g1fulkq.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s566248554 | p02400 | u037441960 | 1556031164 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | import math
r = int(input())
s = r ** 2 * math.pi
l = 2 * r * math.pi
print("{:.6f}".format(s), "{:.6f}".format(l))
| Traceback (most recent call last):
File "/tmp/tmpnh3l9rvr/tmpdrve_vig.py", line 2, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s998653608 | p02400 | u264450287 | 1556072078 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | r = int(input())
import math
pi = math.pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
| Traceback (most recent call last):
File "/tmp/tmpgq9k2ke8/tmpdywsf8r9.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s085462120 | p02400 | u264450287 | 1556072146 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | r = int(input())
import math
pi = math.pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
| Traceback (most recent call last):
File "/tmp/tmp80y_ymuv/tmp5yx0rmmg.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s512642394 | p02400 | u264450287 | 1556072318 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | r = int(input())
import math
pi = math.pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
| Traceback (most recent call last):
File "/tmp/tmpt7vbrreq/tmpvv924w6h.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s754658889 | p02400 | u264450287 | 1556072357 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | r = int(input())
pi = math.pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
| Traceback (most recent call last):
File "/tmp/tmp93nmk9ol/tmp_s8lcpwx.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s193152003 | p02400 | u264450287 | 1556072475 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | r = int(input())
from math import pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
| Traceback (most recent call last):
File "/tmp/tmp_kuzmm3_/tmpuxt5_xsp.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s263353614 | p02400 | u110227199 | 1556097343 | Python | Python3 | py | Runtime Error | 0 | 0 | 3 | a
| Traceback (most recent call last):
File "/tmp/tmp8wxv76ef/tmptq66aj2z.py", line 1, in <module>
a
NameError: name 'a' is not defined
| |
s536045493 | p02400 | u592815095 | 1556203943 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math;r=int(input());print(math.pi*(r**2),math.pi*r*2)
| Traceback (most recent call last):
File "/tmp/tmpgkmu2qgo/tmp7pk2k4rt.py", line 1, in <module>
import math;r=int(input());print(math.pi*(r**2),math.pi*r*2)
^^^^^^^
EOFError: EOF when reading a line
| |
s239602429 | p02400 | u592815095 | 1556204041 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math;r,p=int(input()),3.141592653589793238462643;print(p*(r**2),p*r*2)
| Traceback (most recent call last):
File "/tmp/tmp5v3ngw5w/tmpmra5j2gj.py", line 1, in <module>
import math;r,p=int(input()),3.141592653589793238462643;print(p*(r**2),p*r*2)
^^^^^^^
EOFError: EOF when reading a line
| |
s741878963 | p02400 | u592815095 | 1556204047 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | r,p=int(input()),3.141592653589793238462643;print(p*(r**2),p*r*2)
| Traceback (most recent call last):
File "/tmp/tmp2zo8pabn/tmpv4hcwfxf.py", line 1, in <module>
r,p=int(input()),3.141592653589793238462643;print(p*(r**2),p*r*2)
^^^^^^^
EOFError: EOF when reading a line
| |
s584753177 | p02400 | u592815095 | 1556204064 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | r,p=int(input()),3.141592653589
print(p*(r**2),p*r*2)
| Traceback (most recent call last):
File "/tmp/tmp1oqo6k4r/tmps9hsodn5.py", line 1, in <module>
r,p=int(input()),3.141592653589
^^^^^^^
EOFError: EOF when reading a line
| |
s911364353 | p02400 | u521569208 | 1556235875 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | import math
r=int(input())
area=r**2*math.pi
circumference=r*2*math.pi
print("{0:.5f} {1:.5f}".format(area,circumference))
| Traceback (most recent call last):
File "/tmp/tmpw_rh5xp6/tmpgjx3taj0.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s196108646 | p02400 | u521569208 | 1556235914 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | pi=3.141592653589793
r=int(input())
area=r**2*pi
circumference=r*2*pi
print("{0:.5f} {1:.5f}".format(area,circumference))
| Traceback (most recent call last):
File "/tmp/tmp306db7yj/tmpd1hdu499.py", line 2, in <module>
r=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s883587158 | p02400 | u242221792 | 1556237689 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
p = math.pi
r = int(input())
print("{} {}",format(2*r*p, r*r*p))
| Traceback (most recent call last):
File "/tmp/tmpn1immkr9/tmpbikl7jge.py", line 3, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s933999917 | p02400 | u904226154 | 1556264228 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | import math
a = int(input())
print(str("{0:.6f}".format((a * a) * math.pi)) + " " + str("{0:.5f}".format((a + a) * math.pi)))
| Traceback (most recent call last):
File "/tmp/tmpomxfn46n/tmpwtrgp1hk.py", line 2, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s046545002 | p02400 | u904226154 | 1556264356 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | import math
a = int(input())
print(str("{0:.6f}".format((a * a) * math.pi)) + " " + str("{0:.5f}".format((a + a) * math.pi)))
| Traceback (most recent call last):
File "/tmp/tmps4ef_h8i/tmp4xamz4kk.py", line 2, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s546975158 | p02400 | u482227082 | 1556416256 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | r = int(input().split)
print("%.5f %.5f" %(r**2*3.14, 2*r*3.14))
| Traceback (most recent call last):
File "/tmp/tmp4rn98dkf/tmpqjnemu_k.py", line 1, in <module>
r = int(input().split)
^^^^^^^
EOFError: EOF when reading a line
| |
s030237032 | p02400 | u482227082 | 1556416274 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | r = float(input().split)
print("%.5f %.5f" %(r**2*3.14, 2*r*3.14))
| Traceback (most recent call last):
File "/tmp/tmp87ouw2hq/tmpri_1r0bd.py", line 1, in <module>
r = float(input().split)
^^^^^^^
EOFError: EOF when reading a line
| |
s660418124 | p02400 | u482227082 | 1556416283 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r = float(input().split())
print("%.5f %.5f" %(r**2*3.14, 2*r*3.14))
| Traceback (most recent call last):
File "/tmp/tmp6uh1abdd/tmp0aeq_i7u.py", line 1, in <module>
r = float(input().split())
^^^^^^^
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.