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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s865539943 | p02400 | u956645355 | 1474278383 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
r = input()
m = (r ** 2) * math.pi
l = r * 2 * math.pi
print('{} {}'.format(m, l)) |
s471380735 | p02400 | u956645355 | 1474278738 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | #import math
r = input()
#m = (r ** 2) * math.pi
#l = r * 2 * math.pi
m = (r ** 2) * 3.14
l = r * 2 * 3.14
print('{} {}'.format(m, l)) |
s418818727 | p02400 | u956645355 | 1474279043 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
r = input()
m = r ** 2 * 3.14
l = r * 2 * 3.14
print('{:.5f} {:.5f}'.format(m, l)) |
s838639645 | p02400 | u111053265 | 1474552002 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | pi = 3.14159265368979
r = int(input())
print('{} {}'.fomrat(2*pi*r,pi*r*r)) |
s636031691 | p02400 | u111053265 | 1474552076 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | pi = 3.14159265368979
r = int(input())
print('{} {}'.format(2*pi*r,pi*r*r)) |
s429535112 | p02400 | u494314211 | 1475351089 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a=input()
a=int(a)
p=math.pi
b= a*a*p
c= a*2*p
print('%03.9f' % b,'%03.9f' % c) |
s947198446 | p02400 | u494314211 | 1475351100 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a=input()
a=int(a)
p=math.pi
b= a*a*p
c= a*2*p
print('%03.9f' % b,'%03.9f' % c) |
s483056343 | p02400 | u494314211 | 1475351132 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a=input()
a=float(a)
p=math.pi
b= a*a*p
c= a*2*p
print('%03.9f' % b,'%03.9f' % c) |
s758280016 | p02400 | u494314211 | 1475351146 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a=input()
a=float(a)
p=math.pi
b= a*a*p
c= a*2*p
print('%03.9f' % b,'%03.9f' % c) |
s670148991 | p02400 | u494314211 | 1475351227 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a=input()
a=float(a)
p=math.pi
b= a*a*p
c= a*2*p
print('%03.7f' % b,'%03.7f' % c) |
s435174028 | p02400 | u684306364 | 1475655408 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | import math
r = [int(x) for x in input().split()]
print("{0:f} {1:f}".format(r[0] * r[0] * math.pi, r[0] * 2 * math.pi)) |
s499710004 | p02400 | u684306364 | 1475655502 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | #import math
pi = 3.141592
r = [int(x) for x in input().split()]
print("{0:f} {1:f}".format(r[0] * r[0] * pi, r[0] * 2 * pi)) |
s397008913 | p02400 | u684306364 | 1475655584 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | import math
r = input()
rr = int(r)
print("{0:f} {1:f}".format(rr * rr * math.pi, rr * 2 * math.pi)) |
s234833657 | p02400 | u159356473 | 1475725638 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | #coding: UTF-8
import math
def Circle_Area(r):
print(format(r*r*math.pi,'.6f'),format(2*r*math.pi,'.6f'))
if __name__=="__main__":
Circle_Area(int(input())) |
s476943605 | p02400 | u237991875 | 1475999554 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r = int(input())
print("%f %f" % (math.pi * r ** 2, 2 * math.pi * r)) |
s263403560 | p02400 | u237991875 | 1475999586 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | import math
r = int(input())
print("%f %f" % (math.pi * r ** 2, 2 * math.pi * r)) |
s547275000 | p02400 | u237991875 | 1475999690 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | import math
r = int(input())
print("%f %f" % (math.pi * r ** 2, 2 * math.pi * r)) |
s507005798 | p02400 | u801346721 | 1476702279 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
S = math.pi * r * r
R = 2 * math.pi * r
print("{0} {1}".format(S, R)) |
s576879391 | p02400 | u801346721 | 1476702351 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
S = math.pi * r * r
R = 2 * math.pi * r
print("{0} {1}".format(S, R)) |
s262467208 | p02400 | u801346721 | 1476702366 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
S = math.pi * r * r
R = 2 * math.pi * r
print("{0} {1}".format(S, R)) |
s011916823 | p02400 | u801346721 | 1476702716 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
S = math.pi * r * r
R = 2 * math.pi * r
print("{0} {1}".format(S, R)) |
s252264932 | p02400 | u801346721 | 1476702760 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | from math import math.pi as pi
r = int(input())
S = pi * r * r
R = 2 * pi * r
print("{0} {1}".format(S, R)) |
s647484965 | p02400 | u801346721 | 1476702787 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | from math import pi
r = int(input())
S = pi * r * r
R = 2 * pi * r
print("{0} {1}".format(S, R)) |
s805306588 | p02400 | u801346721 | 1476702820 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | pi = 3.141592
r = int(input())
S = pi * r * r
R = 2 * pi * r
print("{0} {1}".format(S, R)) |
s996836047 | p02400 | u996758922 | 1477102248 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | import math
r = int(input())
a = math.pi*r*r
l = 2*math.pi*r
print("{:.6f}".format(a),"{:.6f}".format(l)) |
s485893061 | p02400 | u743390845 | 1477415543 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | r= int(input())
??= 3.141592653589793238
print(??*r**2,2*??*r) |
s008467049 | p02400 | u743390845 | 1477415593 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | r= int(input())
p= 3.141592653589793238
print(p*r**2,2*p*r) |
s297818710 | p02400 | u743390845 | 1477415617 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | r= int(input())
p= 3.141592
print(p*r**2,2*p*r) |
s828266193 | p02400 | u743390845 | 1477415781 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | r= float(input())
??= 3.141592653589793238
print(??*r**2,2*??*r) |
s037655710 | p02400 | u236295012 | 1477697171 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | from math import pow, pi
r = int(input())
z = pow(r,2)*pi
l = 2*r*pi
print('{} {}'.format(z,l)) |
s699489971 | p02400 | u236295012 | 1477697267 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | r = int(input())
z = r*r*pi
l = 2*r*3.141529
print('{} {}'.format(z,l)) |
s207582113 | p02400 | u236295012 | 1477697459 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | r = float(input())
z = r*r*pi
l = 2*r*3.141529
print('{} {}'.format(z,l)) |
s650834988 | p02400 | u236295012 | 1477697556 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | r = float(input())
z = r*r*3.141592
l = 2*r*3.141592
print('{} {}'.format(z,l)) |
s155060897 | p02400 | u941509088 | 1478182695 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | r = int(input())
s = r * r * 3.14159
l = r * 2 * 3.14159
print(s,l) |
s202981196 | p02400 | u941509088 | 1478182730 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | r = int(input())
s = r * r * 3.14159
l = r * 2 * 3.14159
print(s,l) |
s808803128 | p02400 | u941509088 | 1478182828 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | r = int(input())
s = r * r * 3.14159
l = r * 2 * 3.14159
print("%.5f %.5f" % (s,l)) |
s506232495 | p02400 | u941509088 | 1478183029 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
s = r * r * math.pi
l = r * 2 * math.pi
print("%.5f %.5f" % (s,l)) |
s861798826 | p02400 | u941509088 | 1478183073 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | import math
r = int(input())
s = r * r * math.pi
l = r * 2 * math.pi
print("%.6f %.6f" % (s,l)) |
s315789024 | p02400 | u635647915 | 1478907124 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | #coding:utf-8
import math
r=int(input())
print("%.6f"%(2*math.pi*r)+" %.6f"%(math.pi*r**2)) |
s651354934 | p02400 | u082526811 | 1478952418 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | import math
if __name__ == "__main__":
r = int(input())
print("%.6f %.6f"%(math.pi*r**2,math.pi*2*r)) |
s469792204 | p02400 | u086566114 | 1479306719 | Python | Python | py | Runtime Error | 0 | 0 | 130 | import sys
import math
value = int(sys.stdin.readline())
print round(math.pi * value * value,7), round(2.0 * math.pi * value, 7) |
s032596595 | p02400 | u742376116 | 1479373168 | Python | Python | py | Runtime Error | 0 | 0 | 63 | import math
r = int(raw_input())
print r*r*math.pi, 2*r*math.pi |
s995534452 | p02400 | u513411598 | 1479391030 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(input())
print(r ** 2 * math.pi, r * 2 * math.pi) |
s285437130 | p02400 | u742376116 | 1479392996 | Python | Python | py | Runtime Error | 0 | 0 | 63 | import math
r = int(raw_input())
print r*r*math.pi, 2*r*math.pi |
s961947402 | p02400 | u656368260 | 1479647294 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r=int(input())
print("{0:.6f} {1:.6f}".format(r*r*math.pi, 2*r*math.pi)) |
s853595230 | p02400 | u226541377 | 1479700093 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | import math
r = int(input())
A = r * r * math.pi
B = r * 3 * math.pi
print(A + " " + B) |
s104287677 | p02400 | u326248180 | 1479978873 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | a = int(input())
import math
r = a * a * math.pi
r2 = a * 2 * math.pi
print("%.10f %.10f" % (r, r)) |
s933030851 | p02400 | u326248180 | 1479978893 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a = int(input())
r = a * a * 3,14
r2 = a * 2 * 3.14
print("%.10f %.10f" % (r, r)) |
s115974649 | p02400 | u326248180 | 1479979078 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a = int(input())
r = a * a * 3,14
r2 = a * 2 * 3.14
print("%.10f %.10f" % (r, r2)) |
s600611319 | p02400 | u326248180 | 1479979122 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a = int(input())
import math
r = a * a * math.pi
r2 = a * 2 * math.pi
print("%.10f %.10f" % (r, r2)) |
s726319320 | p02400 | u435300817 | 1480207738 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
r = int(input())
ret = r * r * math.pi
print('{0:.5f} {1:.5f}'.format(ret, ret)) |
s623140815 | p02400 | u435300817 | 1480208159 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | r = int(input())
ret = r * r * 3.141592
print('{0:.5f} {1:.5f}'.format(ret, ret)) |
s796355176 | p02400 | u435300817 | 1480208236 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
r = int(input())
ret = r * r * math.pi
print('{0:.6f} {1:.6f}'.format(ret, ret)) |
s944853053 | p02400 | u435300817 | 1480208452 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | import math
r = int(input())
print('{0:.6f} {1:.6f}'.format(r * r * math.pi, (r + r) * math.pi)) |
s424444442 | p02400 | u811733736 | 1480345439 | Python | Python3 | py | Runtime Error | 0 | 0 | 189 | if __name__ == '__main__':
from math import pi
radius = int(input())
area = radius**2 * pi
perimeter = 2 * radius * pi
print('{0:.6f} {1:.6f}'.format(area, perimeter)) |
s442603202 | p02400 | u811733736 | 1480345484 | Python | Python3 | py | Runtime Error | 0 | 0 | 189 | import math
if __name__ == '__main__':
radius = int(input())
area = radius**2 * math.pi
perimeter = 2 * radius * math.pi
print('{0:.6f} {1:.6f}'.format(area, perimeter)) |
s063605940 | p02400 | u250482563 | 1480567264 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | from math import pi
r = froat(input())
s = pi * r * r
l = 2 * pi * r
print(s, l) |
s188247582 | p02400 | u910432023 | 1481030458 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | import math
r = int(input())
print(2*math.pi*r, math.pi*r*r) |
s269432265 | p02400 | u385274266 | 1481365219 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | r = int(input())
pi=3.1415926535
print('{0:.6f} {1:.6f}'.format(r**2*pi,r*2*pi)) |
s402819444 | p02400 | u732614538 | 1481480718 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | from math import pi
print('{.5f} {.5f}'.format(r*r*pi,r*2*pi) |
s984308606 | p02400 | u732614538 | 1481480783 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | from math import pi
r = int(input())
print('{.5f} {.5f}'.format(r*r*pi,r*2*pi)) |
s916653773 | p02400 | u732614538 | 1481480812 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | from math import pi
r = int(input())
print('{:.5f} {:.5f}'.format(r*r*pi,r*2*pi)) |
s461625475 | p02400 | u732614538 | 1481480821 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | from math import pi
r = int(input())
print('{:.5f} {:.5f}'.format(r*r*pi,r*2*pi)) |
s904291724 | p02400 | u732614538 | 1481480876 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | from math import pi
r = int(input())
print('{0:.5f} {1:.5f}'.format(r*r*pi,r*2*pi)) |
s066309110 | p02400 | u078042885 | 1481654440 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | from math import pi
r=int(input())
print("{} {}".format(r*r*pi,2*pi*r)) |
s770561115 | p02400 | u106285852 | 1481736311 | Python | Python3 | py | Runtime Error | 0 | 0 | 693 | '''
ITP-1_4-B
????????¢?????¨?????¨
?????? r ???????????¢?????¨?????¨?????????????±???????????????°?????????????????????????????????
Input
??????????????° r ????????????????????????
Output
??¢?????¨?????¨?????????????????????????????§????????£????????????????????????????????????????????????????°???°?????°??¨??????0.... |
s477730437 | p02400 | u923668099 | 1481765841 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | # coding: utf-8
# Here your code !
import math
r = int(input())
print("{0:.8f}".format(r ** 2 * math.pi)) |
s599492574 | p02400 | u923668099 | 1481765932 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | # coding: utf-8
# Here your code !
import math
r = int(input())
print("{0:.8f} {1:.8f}".format(r ** 2 * math.pi,2 * math.pi * r)) |
s138946916 | p02400 | u923668099 | 1481766054 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | # coding: utf-8
# Here your code !
import math
r = int(input())
print("{0:.8f} {1:.8f}".format((r ** 2) * math.pi,2 * math.pi * r)) |
s442741136 | p02400 | u234837959 | 1482331197 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | import math
r = int(input())
area = math.pi * (r ** 2)
circum = 2 * math.pi * r
print("{0:.6f} {1:.6f}".format(area, circum)) |
s072899197 | p02400 | u234837959 | 1482331242 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | import math
r = int(input())
area = math.pi * (r ** 2)
circum = 2 * math.pi * r
print("{0:.6f} {1:.6f}".format(area, circum)) |
s744912761 | p02400 | u156024720 | 1482654794 | Python | Python3 | py | Runtime Error | 0 | 0 | 186 | r = int(input())
if r > 0 and r < 10000:
circle_length = (r * 2) * 3.14
circle_area = r * r * 3.14
print("{0:f} {1:f}".format(circle_area, circle_length))
else:
pass |
s277542957 | p02400 | u313089641 | 1483243063 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | import math
x = int(input())
c = x * 2 * math.pi
a = x ** 2 * math.pi
print('{:.6f} {:.6f}'.format(c, a)) |
s030759753 | p02400 | u313089641 | 1483243756 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | import math
x = int(input())
c = x * 2 * math.pi
a = x ** 2 * math.pi
print('{:.6f} {:.6f}'.format(c, a)) |
s836807371 | p02400 | u019678978 | 1483976689 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
a = int(input())
area = a * a * math.pi
cir = (a * 2) * math.pi
print(area,cir) |
s119054503 | p02400 | u019678978 | 1483976807 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
a = int(input())
area = a * a * math.pi
cir = (a * 2) * math.pi
print(area,cir) |
s003559542 | p02400 | u656153606 | 1484365211 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | import math
r = int(input())
S = r * r * math.pi
L = 2 * r * math.pi
print('{0:.5f}'.format(S),'{0:.5f}'.format(L)) |
s338972391 | p02400 | u656153606 | 1484365307 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | import math
r = int(input())
S = r * r * math.pi
L = 2 * r * math.pi
print('{0:.6f}'.format(S),'{0:.6f}'.format(L)) |
s071992577 | p02400 | u276050131 | 1484817830 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | r = input()
r = int(r)
print(r ** 2 * 3.14)
print(r * 2 * 3.14) |
s655930943 | p02400 | u276050131 | 1484818077 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | import math
r = input()
r = int(r)
s = r ** 2 * math.pi
enshu = r * 2 * math.pi
print("{0:.6f}".format(s))
print("{0:.6f}".format(enshu)) |
s547903813 | p02400 | u519227872 | 1485278111 | Python | Python | py | Runtime Error | 0 | 0 | 82 | from math import pi
r = int(raw_input())
print "%s %s"%(pi * pow(r,2), 2 * pi * r) |
s195788998 | p02400 | u964416376 | 1485534850 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
a = r * r * math.pi
c = 2 * r * math.pi
print('%.6f %.6f' % (a, c)) |
s001734117 | p02400 | u148628801 | 1485927460 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | import math
r = int(input())
s = math.pi * r ** 2
l = 2 * math.pi * r
print("{0:.6f} {1:.6f}".format(s, l)) |
s861807505 | p02400 | u104171359 | 1486103527 | Python | Python3 | py | Runtime Error | 0 | 0 | 360 | #!usr/bin/env python3
import sys
from math import pi
def area_of_circle(radius):
return pi * radius**2
def circumference_of_circle(radius):
return 2*pi*radius
def main():
r = int(sys.stdin.readline())
print(r)
print(type(r))
print('%f %f' % (area_of_circle(r), circumference_of_circle(r)))... |
s620049998 | p02400 | u104171359 | 1486103873 | Python | Python3 | py | Runtime Error | 0 | 0 | 325 | #!usr/bin/env python3
import sys
from math import pi
def area_of_circle(radius):
return pi * radius**2
def circumference_of_circle(radius):
return 2*pi*radius
def main():
r = (sys.stdin.readline())
print('%f %f' % (area_of_circle(r), circumference_of_circle(r)))
if __name__ == '__main__':
m... |
s324823172 | p02400 | u731896389 | 1486399817 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(input())
print("%d %d"%(math.pi*r*r,2*math.pi*r)) |
s734272064 | p02400 | u227438830 | 1487047384 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a, b = map(int, input().split())
d = a//b
r = a % b
f = a / b
print("{:d} {:d} {:.5f}".format(d,r,f)) |
s207952477 | p02400 | u548155360 | 1487151876 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | import math
r = map(float,input())
S = math.pi * r * r
l = 2 * r * math.pi
print('{0:f} {1:f}'.format(S,l)) |
s248495712 | p02400 | u553058997 | 1487755870 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(input())
print(r ** 2 * math.pi, r * 2 * math.pi) |
s567259621 | p02400 | u553058997 | 1487755923 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(input())
print(r ** 2 * math.pi, r * 2 * math.pi) |
s079516450 | p02400 | u553058997 | 1487755954 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | r = int(input())
print(r ** 2 * 3.141592653589793, r * 2 * 3.141592653589793) |
s654477037 | p02400 | u553058997 | 1487755998 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | r = int(input())
print(r ** 2 * 3.141592653589793, r * 2 * 3.141592653589793) |
s011348485 | p02400 | u553058997 | 1487756529 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | r = int(input())
print(r * r * 3.14, r * 2 * 3.14) |
s431107195 | p02400 | u553058997 | 1487756571 | Python | Python | py | Runtime Error | 0 | 0 | 53 | r = int(raw_input())
print r * r * 3.14, r * 2 * 3.14 |
s343402915 | p02400 | u553058997 | 1487756576 | Python | Python | py | Runtime Error | 0 | 0 | 53 | r = int(raw_input())
print r * r * 3.14, r * 2 * 3.14 |
s030337841 | p02400 | u553058997 | 1487759049 | Python | Python | py | Runtime Error | 0 | 0 | 53 | r = int(raw_input())
print r * r * 3.14, r * 2 * 3.14 |
s435025769 | p02400 | u639421643 | 1488266808 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | from math import pi
r = int(input())
S = pi * r ** 2
L = 2 * pi * r
print("{0} {1}".format(S, L)) |
s279570538 | p02400 | u639421643 | 1488267037 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | from math import pi
r = int(input())
S = pi * r ** 2
L = 2 * pi * r
print("{0} {1}".format(S, L)) |
s618732865 | p02400 | u639421643 | 1488267087 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
S = math.pi * r * r
L = 2 * math.pi * r
print("{0} {1}".format(S, L)) |
s616287321 | p02400 | u639421643 | 1488267168 | 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))) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.