s_id stringlengths 10 10 | p_id stringlengths 6 6 | u_id stringlengths 10 10 | date stringlengths 10 10 | language stringclasses 1
value | original_language stringclasses 11
values | filename_ext stringclasses 1
value | status stringclasses 1
value | cpu_time stringlengths 1 5 | memory stringlengths 1 7 | code_size stringlengths 1 6 | code stringlengths 1 539k |
|---|---|---|---|---|---|---|---|---|---|---|---|
s253764815 | p02400 | u639421643 | 1488267514 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | import math
r = int(input())
S = math.pi * r * r
L = 2 * math.pi * r
print("{0} {1}".format(round(S,5), round(L,5))) |
s593220513 | p02400 | u639421643 | 1488267772 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import math
r = input()
r = int(r)
S = math.pi * r * r
L = 2 * math.pi * r
print("{0} {1}".format(round(S,6), round(L,6))) |
s511913924 | p02400 | u639421643 | 1488268090 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import math
r = input()
r = int(r)
S = math.pi * r * r
L = 2 * math.pi * r
print("{0} {1}".format(round(S,6), round(L,6))) |
s006851290 | p02400 | u780342333 | 1488359422 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
n = int(input())
res = "%.6f" % float(n * math.pi)
print(res) |
s611261343 | p02400 | u922633376 | 1488511514 | Python | Python3 | py | Runtime Error | 0 | 0 | 195 | import math
if __name__ == "__main__":
r = int(input())
equivalent_of_circle = math.pi*(r**2)
len_of_circle = math.pi*r*2
print("%0.6f %0.6f"%(equivalent_of_circle,len_of_circle)) |
s178328830 | p02400 | u922633376 | 1488511557 | Python | Python3 | py | Runtime Error | 0 | 0 | 199 | if __name__ == "__main__":
import math
r = int(input())
equivalent_of_circle = math.pi*(r**2)
len_of_circle = math.pi*r*2
print("%0.6f %0.6f"%(equivalent_of_circle,len_of_circle)) |
s703535010 | p02400 | u782850499 | 1488866460 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | r=int(input())
p=3.14159265358979
print("{0:.5f} {1:.5f}".format(p*r**2,2*p*r)) |
s102803344 | p02400 | u130834228 | 1488948525 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | import math
r = int(input())
#menseki
a = r*r*math.pi
#ensyu
b = 2*r*math.pi
print("%.5f %.5f" % (a, b)) |
s676719989 | p02400 | u130834228 | 1488948664 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | import math
r = int(input())
#menseki
a = r*r*math.pi
#ensyu
b = 2*r*math.pi
print("%.5f %.5f" % (a, b)) |
s520892616 | p02400 | u130834228 | 1488948803 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | import math
r = flaot(input())
#menseki
a = r*r*math.pi
#ensyu
b = 2*r*math.pi
print("%.5f %.5f" % (a, b)) |
s834386226 | p02400 | u130834228 | 1488949968 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | #small, large or equal
a, b = map(int, input().split())
if a<b:
print('a < b')
elif a>b:
print('a > b')
else:
print('a = b') |
s255071867 | p02400 | u343748576 | 1489123555 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | r = int(input())
pi = 3.1415926535
area = 2*pi*r
circumference = pi*r**2
print("{0:.6f} {1:.6f}".format(area, circumference)) |
s247887394 | p02400 | u921541953 | 1489220773 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | import math
r = int(input())
s = r * r * math.pi
c = 2 * r * math.pi
print('{0:0.6f} {1:0.6f}'.format(s, c)) |
s858452165 | p02400 | u921541953 | 1489220828 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | import math
r = int(input())
s = r * r * math.pi
c = 2 * r * math.pi
print("{0:0.6f} {1:0.6f}".format(s, c)) |
s135077751 | p02400 | u868716420 | 1489271482 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
r = int(input())
print('%.6f' % (r * r * math.pi), '%.6f' % (2 * math.pi * r)) |
s999643654 | p02400 | u072398496 | 1489372993 | Python | Python | py | Runtime Error | 0 | 0 | 62 | import math
r=input()
print "%.9f"%(math.pi*r*r, math.pi*r*2) |
s381373030 | p02400 | u897625141 | 1489470927 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r = int(input())
print(str(r*r*3.141592653)+" "+str(r*2*3.141592653)) |
s350321906 | p02400 | u897625141 | 1489484876 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | r = int(input())
menseki = r*r*3.1415926
syuu = r*2*3.1415926
print(str(menseki)+" "+str(syuu)) |
s910616001 | p02400 | u897625141 | 1489484906 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | r = int(input())
menseki = r*r*3.141592
syuu = r*2*3.141592
print(str(menseki)+" "+str(syuu)) |
s059912348 | p02400 | u897625141 | 1489485196 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | import math
r = int(input())
menseki = r*r*math.pi
syuu = r*2*math.pi
print(str(menseki)+" "+str(syuu)) |
s837308110 | p02400 | u897625141 | 1489485319 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | import math
r = int(input())
menseki = r*r*math.pi
syuu = r*2*math.pi
print("%.6f" % (menseki),end=" ")
print("%.6f" % (syuu)) |
s323051625 | p02400 | u882690530 | 1489635539 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | import math
r = int(input())
print("{} {}".format(math.pi * r ** 2, 2 * math.pi * r)) |
s069736598 | p02400 | u756958775 | 1490018687 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r = int(input())
print("{0:.5f} {1:.5f}".format(math.pi*r**2, 2*math.pi*r)) |
s578007191 | p02400 | u756958775 | 1490018735 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r = int(input())
print("{0:.6f} {1:.6f}".format(math.pi*r**2, 2*math.pi*r)) |
s149359868 | p02400 | u022954704 | 1490074327 | Python | Python3 | py | Runtime Error | 0 | 0 | 160 | import math
r = int(input())
circle_squre = r * r * math.pi
circle_length = (r*2) * math.pi
print('{:.5f}'.format(circle_squre),'{:.5f}'.format(circle_length)) |
s627831056 | p02400 | u022954704 | 1490074508 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 |
r = int(input())
circle_squre = r * r * 3.141592
circle_length = (r*2) * 3.141592
print('{:.5f}'.format(circle_squre),'{:.5f}'.format(circle_length)) |
s231295761 | p02400 | u042882066 | 1490693809 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | # -*- coding: utf-8 -*-
from math import pi
r = float(input())
area = r**2*pi
circumference = r*pi*2
print("{:.6f} {.6f}".format(area, circumference)) |
s516752181 | p02400 | u042882066 | 1490693809 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | # -*- coding: utf-8 -*-
from math import pi
r = float(input())
area = r**2*pi
circumference = r*pi*2
print("{:.6f} {.6f}".format(area, circumference)) |
s615637662 | p02400 | u462831976 | 1490781178 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | import math
PI = math.pi
r = int(input())
s = r * r * PI
l = 2 * PI * r
print(s, l) |
s182397634 | p02400 | u462831976 | 1490781300 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | # -*- coding: utf-8 -*-
import sys
import os
import math
PI = math.pi
r = int(input())
s = r * r * PI
l = 2 * PI * r
print(s, l) |
s500660163 | p02400 | u337016727 | 1490938091 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | # codoing: utf-8
import math
num = input()
menseki = int(num)**2*math.pi
ensyu = 2*int(num)*math.pi
print(str("{0:6f}".format(menseki)) + " " + str("{0:6f}".format(ensyu))) |
s168190466 | p02400 | u337016727 | 1490938322 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | # cording: utf-8
import math
num = input()
menseki = int(num)**2*math.pi
ensyu = 2*int(num)*math.pi
print(str("{0:6f}".format(menseki)) + " " + str("{0:6f}".format(ensyu))) |
s005940504 | p02400 | u208157605 | 1491345780 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r = int(input())
print(r * r *math.pi, 2*r*math.pi) |
s494820347 | p02400 | u208157605 | 1491345898 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r = int(input())
print(r * r *math.pi, 2*r*math.pi) |
s785889736 | p02400 | u606989659 | 1491382898 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | import math
r = int(input())
s = r ** 2 * math.pi
c = 2 * r * math.pi
print('{0:.5f} {1:.5f}'.format(s,c)) |
s466095980 | p02400 | u685534465 | 1491894379 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | r = int(input())
pi = 3.14159265359
v = r*r*pi
w = r*pi
print("{0:.10f} {1:.10f}".format(v,w)) |
s803541891 | p02400 | u685534465 | 1491894415 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | r = int(input())
pi = 3.14159265359
v = r*r*pi
w = r*pi
print("{0:.10f} {1:.10f}".format(v,w)) |
s760178065 | p02400 | u957680575 | 1492333396 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | import math
r=int(input())
m=math.pi
s=r*r*m
l=2*r*m
print(s,l) |
s088202080 | p02400 | u957680575 | 1492334355 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r=int(input())
m=float('%03.6f'%math.pi)
s=m*r**2
l=2*r*m
print(s,l) |
s335956323 | p02400 | u957680575 | 1492334499 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r=int(input())
m=float('%03.7f'%math.pi)
s=m*(r**2)
l=(2*r)*m
print(s,l) |
s766086269 | p02400 | u957680575 | 1492334833 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r=int(input())
m=float(math.pi)
s=m*(r**2)
l=(2*r)*m
print(s,l) |
s136117135 | p02400 | u957680575 | 1492335354 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) |
s831492433 | p02400 | u957680575 | 1492335556 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) |
s714284597 | p02400 | u957680575 | 1492336928 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) |
s419388250 | p02400 | u286589639 | 1492500620 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | import math
r = int(input())
s = "{0:.6f}".format(r*r*math.pi)
l = "{0:.6f}".format(2*r*math.pi)
print(str(s) + " " + str(l)) |
s907464985 | p02400 | u286589639 | 1492500748 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
r = int(input())
s = r*r*math.pi
l = 2*r*math.pi
print(str(s) + " " + str(l)) |
s970090938 | p02400 | u286589639 | 1492500867 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | r = int(input())
s = r*r*math.pi
l = 2*r*math.pi
print(str(s) + " " + str(l)) |
s120168783 | p02400 | u286589639 | 1492501349 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | import math
r = int(input())
s = r*r*math.pi()
l = 2*r*math.pi()
print(str(s) + " " + str(l)) |
s806337622 | p02400 | u286589639 | 1492590258 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | import math
r = int(input())
s = r * r * math.pi
l = 2 * r * math.pi
print(s, end = " ")
print(l) |
s256673573 | p02400 | u286589639 | 1492590326 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | r = int(input())
s = r * r * 3.14159265358979
l = 2 * r * 3.14159265358979
print(s, end = " ")
print(l) |
s893388791 | p02400 | u286589639 | 1492590388 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | r = int(input())
s = r * r * 3.14159265358979
l = 2 * r * 3.14159265358979 |
s416519568 | p02400 | u286589639 | 1492590426 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 | r = int(input()) |
s224246801 | p02400 | u286589639 | 1492590733 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | i = input()
r = int(i)
s = r * r * 3.14159265358979
l = 2 * r * 3.14159265358979
print(s, end = " ")
print(l) |
s346456780 | p02400 | u286589639 | 1492590765 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | r = input()
s = r * r * 3.14159265358979
l = 2 * r * 3.14159265358979
print(s, end = " ")
print(l) |
s571493238 | p02400 | u957680575 | 1492608692 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) |
s242214435 | p02400 | u957680575 | 1492608902 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | r = int(input())
m=3.141592
s=r**2*m
l=2*r*m
print(s,l) |
s171967001 | p02400 | u957680575 | 1492609249 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | r = int(input())
m=3.141592
s=r**2*m
l=2*r*m
print(s,l) |
s017101383 | p02400 | u810591206 | 1492789912 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | import math
r = int(input())
s = math.pi * r ** 2
l = 2 * math.pi * r
print("{:.5f} {:.5f}".format(s, l)) |
s077724660 | p02400 | u408260374 | 1492855033 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | from math import pi
r = int(input())
print("{:.010f} {:.010f}".format(2 * pi * r, r * r * pi)) |
s011036107 | p02400 | u489071923 | 1492941088 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import math
r = int(input())
print("{0:5f}".format(r**2*math.pi) , end = " ")
print("{0:5f}".format(2*r*math.pi)) |
s258392017 | p02400 | u957680575 | 1493165162 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
m=float(math.pi)
s=r**2*m
l=2*r*m
print(s,l) |
s328892761 | p02400 | u645985665 | 1493604259 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | import math
r = int(input())
area = r*r*math.pi
length = 2*math.pi*r
print("{:8f} {:8f}".format(area,length)) |
s687369562 | p02400 | u126322807 | 1493975595 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | r = int(input())
a = 3.14159265359*r*r
c = 2*3.14159265359*r
print("%.6f %.6f" % (a, c)) |
s458468883 | p02400 | u126322807 | 1493975649 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | r = int(input())
a = 3.14159265359*r*r
c = 2*3.14159265359*r
print("%.6f %.6f" % (a, c)) |
s484498059 | p02400 | u156215655 | 1494039487 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | import math
r=int(input())
print(r*r*math.pi, 2*r*math.pi) |
s126247435 | p02400 | u156215655 | 1494039572 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | ir=int(input())
print(r*r*3.14, 2*r*3.14) |
s993308981 | p02400 | u156215655 | 1494039609 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | r=int(input())
print(r*r*3.14, 2*r*3.14) |
s213667916 | p02400 | u156215655 | 1494039656 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | import math
r=int(input())
print(r**2*math.pi, 2*r*math.pi) |
s063165474 | p02400 | u156215655 | 1494039695 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | r=int(input())
print(r**2*3.14, 2*r*3.14) |
s302339449 | p02400 | u156215655 | 1494039792 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r=int(input())
area = r**2*math.pi
circle = 2*r*math.pi
print(area, circle) |
s266405668 | p02400 | u156215655 | 1494039815 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r=int(input())
area = r**2*3.14
circle = 2*r*3.14
print(area, circle) |
s049964041 | p02400 | u156215655 | 1494039951 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math
r = int(input())
print(r**2*math.pi, 2*r*math.pi) |
s057210594 | p02400 | u213265973 | 1494252715 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | from math import pi
r = int(input())
print(r ** 2 * pi, 2 * r * pi) |
s375708561 | p02400 | u362104929 | 1494862222 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format((r*r*pi), (2*r*pi))) |
s438942990 | p02400 | u362104929 | 1494862357 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format((r*r*pi), (2*r*pi))) |
s813316538 | p02400 | u362104929 | 1494862566 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(float(r*r*pi), float(2*r*pi))) |
s004358551 | p02400 | u362104929 | 1494862865 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | from math import pi
r = int(input())
print("{0:.6f} {1:.6f}".format(float(r*r*pi), float(2*r*pi))) |
s998794319 | p02400 | u362104929 | 1494862918 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | from math import pi
r = int(input())
print("{0:.6f} {1:.6f}".format(float(r*r*pi), float(2*r*pi))) |
s259739253 | p02400 | u362104929 | 1494863032 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | pi = 3.1415926535
r = int(input())
print("{0:.6f} {1:.6f}".format(float(r*r*pi), float(2*r*pi))) |
s473183604 | p02400 | u362104929 | 1494863087 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | pi=3.1415926535
r = int(input())
print("{0:.6f} {1:.6f}".format(float(r*r*pi), float(2*r*pi))) |
s192720157 | p02400 | u452958267 | 1494938644 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | # -*- coding: utf-8 -*
import math
r = int(input())
print('%.6f %.6f' % (r*r*math.pi, 2*r*math.pi)) |
s707010067 | p02400 | u654414650 | 1495095026 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #coding:utf-8
r =int(input())
pi =3.141592653589793238462
print("{0:.5f} {1:.5f}".format(r**2*pi,r*2*pi))
|
s478095547 | p02400 | u256678932 | 1495161318 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a, b = map(int, input().split(' '))
print("{} {} {:5f}".format(int(a/b), a%b, a/b)) |
s507112708 | p02400 | u603049633 | 1495505579 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | import math
r = int(input())
S = r ** 2 * math.pi
R = 2 * r * math.pi
print("{0:.6f}".format(S) + " " + "{0:.6f}".format(R)) |
s566799587 | p02400 | u650790815 | 1495679303 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | r = int(input())
print('{:.5f} {:.5f}'.format(3.14 * r**2,2*3.14*r)) |
s710966818 | p02400 | u589276934 | 1495693286 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | import math
r = int(input())
print("{0} {1}".format(r * r * math.pi, 2 * r * math.pi)) |
s466031587 | p02400 | u589276934 | 1495693500 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | import math
r = int(input())
print("{0} {1}".format(format(r * r * math.pi, ".8g"), format(2 * r * math.pi,".8g"))) |
s369465524 | p02400 | u650790815 | 1495698396 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | r = fload(input())
import math
print(r**2*math.pi,2 * math.pi*r) |
s541287258 | p02400 | u440180827 | 1495856600 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r = int(input())
print('{:.6f} {:.6f}'.format(math.pi*r*r, 2*math.pi*r)) |
s724440985 | p02400 | u342125850 | 1496490842 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | num = int(input())
area = num*num*3.14
circle = 2*3.14*num
print(area,circle) |
s606958236 | p02400 | u884012707 | 1496625941 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import math
r = int(input())
s=r**2 * math.pi
l=r*2*math.pi
print(s,l) |
s282810162 | p02400 | u193453446 | 1497329648 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | # -*- coding: utf-8 -*-
r = int(input().strip())
p = 3.14159265
m = r * r * p
l = 2 * r * p
print("{0:.6f} {1:.6f}".format(m,l)) |
s001455108 | p02400 | u431104056 | 1497369346 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | #!/usr/bin/python
import math
r = int(input())
print("{0:5f} {1:5f}".format(r ** 2 * math.pi, 2 * r * math.pi)) |
s015413244 | p02400 | u431104056 | 1497369447 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | #!/usr/bin/python
pi = 3.141592
r = int(input())
print("{0:5f} {1:5f}".format(r ** 2 * pi, 2 * r * pi)) |
s217753280 | p02400 | u580737984 | 1497512169 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | import math
r = int(input())
large = r ** 2 * math.pi
length = r * 2 * math.pi
print(large,end=' ')
print(length) |
s505586111 | p02400 | u580737984 | 1497512604 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | import math
r = int(input())
large = r ** 2 * math.pi
length = r * 2 * math.pi
print(large,end=' ')
print(length) |
s937628877 | p02400 | u627002197 | 1497623819 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | pi = 3.14159
r = int(input())
print(r*r*pi,2*r*pi) |
s895876485 | p02400 | u238667145 | 1497683498 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | import math
r = int(input())
print(
math.pow(r, 2) * math.pi,
r * 2 * math.pi
) |
s418576883 | p02400 | u928051788 | 1498007897 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | # Here your code !
import math
r=int(input())
print(r*2*math.pi,r**2*math.pi) |
s938405945 | p02400 | u928051788 | 1498007951 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | import math
r=int(input())
print(r**2*math.pi,r*2*math.pi) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.