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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s669125574 | p02400 | u423320231 | 1513386465 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | import math
r=int(input())
a=r*r*math.pi
b=2*r*math.pi
print(a,b) |
s873307273 | p02400 | u423320231 | 1513387064 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | import math
r=int(input())
a=r*r*math.pi
b=2*r*math.pi
print('%.5f %.5f' % (a,b)) |
s219876367 | p02400 | u406002631 | 1513897134 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | import math
r = int(input())
print("{0:5f} {0:5f}".format(float(r * r * math.pi), float(r * 2 * math.pi))) |
s225570745 | p02400 | u585035894 | 1513931773 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | import math
i = int(input())
print(i**2*math.pi, i*2*math.pi) |
s006028971 | p02400 | u506705885 | 1514000032 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | import math
r=int(input())
print(r*r*math.pi,r*2*math.pi) |
s016186524 | p02400 | u506705885 | 1514000617 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | import math
r=int(input())
print("{0:.5f}".format(r*r*math.pi),"{0:.5f}".format(r*2*math.pi)) |
s676682783 | p02400 | u506705885 | 1514000695 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | import math
r=double(input())
print("{0:.5f}".format(r*r*math.pi),"{0:.5f}".format(r*2*math.pi)) |
s381064389 | p02400 | u183224403 | 1514331093 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | import math
r = int(input())
pi = math.pi
area = ('%03.6f' % (r * r * pi))
length = ('%03.6f' % (2 * r * pi))
print(area, length, sep=" ") |
s817433291 | p02400 | u365686736 | 1514728799 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | import math
r = int(input())
print("%f %f" % (2 * r * math.pi, r ** 2 * math.pi)) |
s049785940 | p02400 | u737311644 | 1514771243 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | r = int(input())
print(r*r*3.141592,(r+r)*3.141592)
|
s309859758 | p02400 | u737311644 | 1514773186 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | from math import pi
r = int(input())
a=r*r*pi
b=(r+r)*pi
print("{0:.6f} {1:.6f}".format( a, b) )
|
s901239122 | p02400 | u737311644 | 1514773186 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | from math import pi
r = int(input())
a=r*r*pi
b=(r+r)*pi
print("{0:.6f} {1:.6f}".format( a, b) )
|
s272480858 | p02400 | u839008951 | 1515148135 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | import math
instr = input()
instrSp = instr.split()
a = int(instrSp[0])
print("{a:5f} {b:5f}".format(a=a * a * math.pi, b=2 * a * math.pi))
|
s036461383 | p02400 | u839008951 | 1515148325 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | from math import pi
instr = input()
instrSp = instr.split()
a = int(instrSp[0])
print("{a:5f} {b:5f}".format(a=a * a * pi, b=2 * a * pi))
|
s763059205 | p02400 | u426534722 | 1515511746 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | from math import *
r = int(input())
print(r * r * pi, 2 * r * pi)
|
s200028193 | p02400 | u426534722 | 1515511827 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | from math import *
r = int(input())
print("{:.6f} {:.6f}".format(r * r * pi, 2 * r * pi))
|
s785401184 | p02400 | u426534722 | 1515511858 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(r * r * pi, 2 * r * pi))
|
s464649061 | p02400 | u426534722 | 1515511873 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(r * r * pi, 2 * r * pi))
|
s271385333 | p02400 | u426534722 | 1515511963 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | r = int(input())
print("{:.6f} {:.6f}".format(r * r * 3.14159265359, 2 * r * 3.14159265359))
|
s464059136 | p02400 | u426534722 | 1515511984 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r = int(input())
print(r * r * 3.14159265359, 2 * r * 3.14159265359)
|
s981189208 | p02400 | u113501470 | 1515796198 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | import math
r = int(input())
a = math.pi * math.pow(r, 2)
c = 2*math.pi*r
print('{} {}'.format(a,c))
|
s557955240 | p02400 | u179070318 | 1515998630 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | from math import pi
r = int(input())
print(pi*r**2,2*pi*r)
|
s271291387 | p02400 | u770698847 | 1516188057 | Python | Python | py | Runtime Error | 0 | 0 | 105 | x = raw_input()
r = int(x)
s = r * r * 3.14159265359
l = 2 * r * 3.14159265359
print "%.6f %.6f" % (s,l)
|
s197659474 | p02400 | u770698847 | 1516188226 | Python | Python | py | Runtime Error | 0 | 0 | 105 | x = raw_input()
r = int(x)
s = r * r * 3.14159265359
l = 2 * r * 3.14159265359
print "%.6f %.6f" % (s,l)
|
s910084415 | p02400 | u227984374 | 1516243930 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | r = int(input())
p = 3.14159265
print(p*r*r, p*r*2)
|
s700993080 | p02400 | u072855832 | 1516258883 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | import math
r = int(input())
print("{0:.5f}".format(r*r*math.pi))
print("{0:.5f}".format(2*r*math.pi))
|
s767804884 | p02400 | u546968095 | 1516781877 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | from math import pi
def circle(r):
print(r*r*pi, 2*pi*r)
return 0
if __name__ == "__main__":
r = input()
ret = circle(int(r))
|
s088942284 | p02400 | u177808190 | 1517071056 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
x = int(input())
print ('{} {}'.format(math.pi*x*x, 2*math.pi*x))
|
s812433589 | p02400 | u640809202 | 1517671096 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | from math import pi
a=int(input())
print(a*pi)
|
s475256812 | p02400 | u640809202 | 1517671155 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | from math import pi
a=2 * int(input())
print(a*pi)
|
s167234150 | p02400 | u139687801 | 1517691599 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r = int(input())
s = r*r*math.pi
c = 2*r*math.pi
print(s, c)
|
s340748265 | p02400 | u780025254 | 1517811663 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | r = int(input())
pi = 3.141592653589
print("{:.5f} {:.5f}".format(r ** 2 * pi, 2 * r * pi))
|
s322295981 | p02400 | u780025254 | 1517811773 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | r = int(input())
pi = 3.141592653589
print("{:.10f} {:.10f}".format(r ** 2 * pi, 2 * r * pi))
|
s976866497 | p02400 | u444576298 | 1518011339 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | #coding:utf-8
import math
r = int(input())
print(str(r * 2 * math.pi) + " " + str(r ** 2 * math.pi))
|
s267308503 | p02400 | u444576298 | 1518011407 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | #coding:utf-8
import math
r = int(input())
print(str(format(r * 2 * math.pi, ".6f")) + " " + str(format(r ** 2 * math.pi, ".6f")))
|
s484568710 | p02400 | u613627875 | 1518247101 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import math
r = int(input())
print("%f %f" % (r*r*math.pi, 2*r*math.pi))
|
s259270683 | p02400 | u613627875 | 1518247175 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import math
r = input()
print("%f %f" % (r*r*math.pi, 2*r*math.pi))
|
s702036415 | p02400 | u602702913 | 1519197221 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
r=int(input())
s=r*r*math.pi
l=2*r*math.pi
print(s,l,sep=" ")
|
s366045600 | p02400 | u299231628 | 1519299098 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | r = int(input())
pi = 3.141592653589
a = r * r * pi
l = r * 2 * pi
print('{:0.8} {:0.8}'.format(a, l))
|
s677410990 | p02400 | u299231628 | 1519299173 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | r = int(input())
pi = 3.14159265
a = r * r * pi
l = r * 2 * pi
print('{:0.8} {:0.8}'.format(a, l))
|
s223441937 | p02400 | u299231628 | 1519299224 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | r = int(input())
a = r * r * 3.14159265
l = r * 2 * 3.14159265
print('{:0.8} {:0.8}'.format(a, l))
|
s871261429 | p02400 | u299231628 | 1519299422 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | r = int(input())
a = r * r * 3.14
l = r * 2 * 3.14
print('{} {}'.format(a, l))
|
s249979543 | p02400 | u641082901 | 1519744032 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | from math import pi
r = int(input())
print("%.6f %.6f" % (pi*r** 2, 2*pi*r))
|
s672366819 | p02400 | u387507798 | 1519785721 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | from math import pi
r = int(input())
print('%.6f %.6f' % (r*r*pi, 2*r*pi))
|
s261798512 | p02400 | u234508244 | 1519993894 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | r = int(input())
print(r**2*3.14, 2*r*3.14)
|
s937615878 | p02400 | u234508244 | 1520029906 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | r = int(input())
print(r**2 * 3.14, 2 * r * 3.14)
|
s733349352 | p02400 | u234508244 | 1520030299 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | r = int(input())
print("{0:f} {1:f}".format(r**2 * 3.14, 2 * r * 3.14))
|
s171528161 | p02400 | u234508244 | 1520030407 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | import math
r = int(input())
print("{0:f} {1:f}".format(r**2 * math.pi, 2 * r * math.pi))
|
s200551531 | p02400 | u234508244 | 1520030584 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | r = int(input())
print("{0:f} {1:f}".format(r**2 * 3.141592653589, 2 * r * 3.141592653589))
|
s127717903 | p02400 | u234508244 | 1520030783 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | r = int(input())
print("{0:.5f} {1:.5f}".format(r**2 * 3.141592653589, 2 * r * 3.141592653589))
|
s866092811 | p02400 | u234508244 | 1520031426 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | r = int(input())
print("{0:.6f} {1:.6f}".format(r**2 * 3.141592653589, 2 * r * 3.141592653589))
|
s085537153 | p02400 | u005739171 | 1520233940 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import math
r = int,input()
pi = math.pi
L = 2*pi*r
S = pi*r*r
print(L,S)
|
s183536733 | p02400 | u806005289 | 1520335263 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | import math
p=math.pi
r=int(input())
a=r*r*p
b=2*r*p
c=round(a,5)
d=round(b,5)
print(str(c)+" "+str(d))
|
s320594982 | p02400 | u508054630 | 1520411700 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | r = int(input())
pi = 3.141592653589793
A = float(pow(r, 2) * pi)
S = float(2 * pi * r)
print("{0:.8f}".format(A) + ' ' + "{0:.8f}".format(S))
|
s256938528 | p02400 | u017435045 | 1520818052 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r=int(input())
a=math.pi*r**2
c=2*math.pi*r
print(a, c)
|
s464481914 | p02400 | u017435045 | 1520818166 | Python | Python3 | py | Runtime Error | 0 | 0 | 152 | from math import pi
r=float(input())
print("{} {}".format(r*r*pi,2*pi*r))
from math import pi
r= float(input())
print("{} {}".format(r*r*pi,2*pi*r))
|
s807292292 | p02400 | u009101629 | 1520847536 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | a = int(input())
import numpy as np
def main():
e = np.e
pi = np.pi
print(str(pi*a**2) + " " + str(pi*2*a))
if __name__ == '__main__':
main()
|
s294489407 | p02400 | u009101629 | 1520849291 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | R = int(input())
print(str(R*R*3.141592653589793238462623383279) + " " + str(R*2*3.141592653589793238462623383279))
|
s295561730 | p02400 | u177081782 | 1520856701 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | r = int(input())
import math
S = "%.5f"%(r ** 2 * math.pi)
L = "%.5f"%(2 * r * math.pi)
print(str(S) + " " + str(L))
|
s984686902 | p02400 | u177081782 | 1520856759 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | r = int(input())
import math
S = "%.6f"%(r ** 2 * math.pi)
L = "%.6f"%(2 * r * math.pi)
print(str(S) + " " + str(L))
|
s294995543 | p02400 | u646461156 | 1520952968 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
r=int(input())
print("{:.5f} {:.5f}".format(r*r*math.pi,r*2*pi))
|
s303001134 | p02400 | u646461156 | 1520952989 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
r=int(input())
print("{:.5f} {:.5f}".format(r*r*math.pi,r*2*math.pi))
|
s562406353 | p02400 | u646461156 | 1520953044 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
r=int(input())
print("{:.5f} {:.5f}".format(r*r*math.pi,r*2*math.pi))
|
s660519126 | p02400 | u646461156 | 1520953118 | 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))
|
s283665611 | p02400 | u413145445 | 1521192949 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import math
val = int(input())
print("{0:.8f}".format(2 * val * math.pi), "{0:.8f}".format(val * val * math.pi))
|
s460054493 | p02400 | u413145445 | 1521193081 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | val = int(input())
print("{0:.8f}".format(2 * val * 3.141592653589793), "{0:.8f}".format(val * val * 3.141592653589793))
|
s582921191 | p02400 | u413145445 | 1521193120 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | val = int(input())
print("{0:.8f}".format(2 * val * 3.141592653589793), "{0:.8f}".format(val * val * 3.141592653589793))
|
s483063656 | p02400 | u566311709 | 1521458873 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | r = int(input())
print(math.pi * (r ** 2), 2 * math.pi * r)
|
s666153859 | p02400 | u566311709 | 1521459017 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | import math
r = int(input())
print(math.pi * (r ** 2), 2 * math.pi * r)
|
s844307802 | p02400 | u566311709 | 1521459057 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | r = float(input())
print(math.pi * (r ** 2), 2 * math.pi * r)
|
s768929169 | p02400 | u178477792 | 1521594859 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | import math
r = int(input())
area = math.pi * r * r
circum = 2 * math.pi * r
print(str("{0:.6f}".format(area)) + " " + str("{0:.6f}".format(circum)))
|
s504489182 | p02400 | u178477792 | 1521594889 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | r = int(input())
area = math.pi * r * r
circum = 2 * math.pi * r
print(str("{0:.6f}".format(area)) + " " + str("{0:.6f}".format(circum)))
|
s177288074 | p02400 | u178477792 | 1521594970 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 | r = int(input())
pi = 3.141592653589793
area = pi * r * r
circum = 2 * pi * r
print(str("{0:.6f}".format(area)) + " " + str("{0:.6f}".format(circum)))
|
s573661154 | p02400 | u027874809 | 1522208440 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
r = int(input())
print('{a:6f} {b:6f}'.format(a=r*r*math.pi, b=r*2*math.pi))
|
s928192199 | p02400 | u621084859 | 1522396063 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | from math import pi
r=int(input())
print(pi*r**2)
|
s859320818 | p02400 | u621084859 | 1522396088 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | from math import pi
r=int(input())
print(pi*r**2)
|
s871989514 | p02400 | u621084859 | 1522396152 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | r=int(input())
print(3.1416*r**2)
|
s643656659 | p02400 | u621084859 | 1522396205 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | r=int(input())
print(3.1416*r*2)
|
s274541371 | p02400 | u621084859 | 1522396226 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | r=int(input())
print(r**2)
|
s356200856 | p02400 | u621084859 | 1522398021 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | r=int(input())
print(3.1416* r**2 3.1416* r*2)
|
s154106664 | p02400 | u706023549 | 1522406265 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | #coding: utf-8
r = int(input())
s = r**2*3.1415926535
l = 2*r*3.1415926535
print(str(s) + " " + str(l))
|
s245443535 | p02400 | u002193969 | 1522529088 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | r = int(input())
x = r * r * 3.14159265
y = r * 2 * 3.14159265
print(x, y)
|
s811411296 | p02400 | u002193969 | 1522529345 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | r = float(input())
x = r * r * 3.14159265
y = r * 2 * 3.14159265
print("{0:f} {1:f}", format(x, y))
|
s975714473 | p02400 | u855668326 | 1522578332 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | from math import pi
r = int(input())
print(pi*r**2, 2*pi*r)
|
s082045588 | p02400 | u621084859 | 1522629650 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | r=int(input())
p=3.14159265
print(p*r*r 2*p*r)
|
s919000153 | p02400 | u621084859 | 1522629700 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | r=float(input())
p=3.14159265
print(p*r*r 2*p*r)
|
s604960589 | p02400 | u621084859 | 1522632881 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | from math import pi
r = int(input())
a = pi*r*r
b = 2*pi*r
print(a,b)
|
s439785841 | p02400 | u886729200 | 1522718905 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import numpy as np
r = int(input())
print("{} {}".format((np.pi)*r**2 , 2*np.pi*r))
|
s738499113 | p02400 | u886729200 | 1522719119 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | pi = 3.1415926535
r = int(input())
print("{0:.6f} {1:.6f}".format(pi*r**2 , 2*pi*r))
|
s424034837 | p02400 | u886729200 | 1522719139 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | pi = 3.1415926535
r = int(input())
print("{0:.6f} {1:.6f}".format(pi*r**2 , 2*pi*r))
|
s596414906 | p02400 | u886729200 | 1522719757 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | import numpy as np
r = float(input())
print("{0:.8f} {1:.6f}".format(np.pi*r*r , 2*np.pi*r))
|
s136752782 | p02400 | u886729200 | 1522719875 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | pi = 3.141592653589793
r = float(input())
print("{0:.8f} {1:.6f}".format(np.pi*r*r , 2*np.pi*r))
|
s115453685 | p02400 | u886729200 | 1522719891 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | pi = 3.141592653589793
r = float(input())
print("{0:.6f} {1:.6f}".format(np.pi*r*r , 2*np.pi*r))
|
s494326195 | p02400 | u886729200 | 1522719922 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | pi = 3.141592653589793
r = float(input())
print("{0:.6f} {1:.6f}".format(np.pi*r**2 , 2*np.pi*r))
|
s836759417 | p02400 | u886729200 | 1522719975 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | pi = 3.141592653589793
r = float(input())
print("{0:.6f} {1:.6f}".format(np.pi*r**2 , 2*np.pi*r))
|
s215739155 | p02400 | u682153677 | 1523075077 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | # -*- coding: utf-8 -*-
import math
n = list(map(int, input().split()))
print('{0:.6f} {1: .6f}'.format(n[0] * 2 * math.pi, n[0] * n[0] * math.pi))
|
s231024817 | p02400 | u682153677 | 1523075114 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | # -*- coding: utf-8 -*-
import math
n = list(map(input().split()))
print('{0:.6f} {1: .6f}'.format(n[0] * 2 * math.pi, n[0] * n[0] * math.pi))
|
s341411384 | p02400 | u682153677 | 1523075306 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | # -*- coding: utf-8 -*-
import math
n = list(map(float, input().split()))
print('{0:.6f} {1: .6f}'.format(n[0] * n[0] * math.pi), n[0] * 2 * math.pi)
|
s298528761 | p02400 | u095590628 | 1523588250 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | r = int(input())
S = r*r*3.1415927
L = 2*r*3.1415927
print("{:.6f} {:.6f}".format(S,L))
|
s883375873 | p02400 | u244493040 | 1523638006 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | import math
print(int(input())**2*math.pi)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.