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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s245027922 | p02400 | u548252256 | 1556445302 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | r = int(input())
m = 3.141592 * r * r
l = 3.141592 * r * 2
print("{:.5f}".format(m),"{:.5f}".format(l))
|
s872932669 | p02400 | u344890307 | 1556518498 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | inport math
r=input().strip()
print('{0:5f} {1:5f}'.format(r**2*math.pi,2*r*math.pi)
|
s742264198 | p02400 | u344890307 | 1556518568 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
r=int(input().strip())
print('{0:5f} {1:5f}'.format(r**2*math.pi,2*r*math.pi))
|
s563827697 | p02400 | u344890307 | 1556518598 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | import math
r=int(input().strip())
print('{0:5f} {1:5f}'.format(r**2*math.pi,2*r*math.pi))
|
s099460347 | p02400 | u344890307 | 1556518635 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r=int(input())
print('{0:5f} {1:5f}'.format(r**2*math.pi,2*r*math.pi))
|
s548344402 | p02400 | u829107115 | 1556529018 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | import math
r = int(input())
area = math.pi * r**2
length = 2 * math.pi * r
print(f"{area:.6f} {length:.6f}")
|
s773839118 | p02400 | u829107115 | 1556529221 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | import math
p = input()
r = int(p)
area = math.pi * r ** 2
length = 2 * math.pi * r
print(f"{area:.6f} {length:.6f}")
|
s695179157 | p02400 | u610816226 | 1556625809 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | r= int(input())
print(r**2*math.pi, r*2*math.pi)
|
s870469294 | p02400 | u610816226 | 1556625943 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math
r= int(input())
print(r**2*math.pi, r*2*math.pi)
|
s603585724 | p02400 | u610816226 | 1556626001 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math
r= int(input())
print(r**2*math.pi, r*2*math.pi)
|
s669044733 | p02400 | u610816226 | 1556626036 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | import math
r = int(input())
print(r**2*math.pi, r*2*math.pi)
|
s917478718 | p02400 | u592365052 | 1556666748 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | import math
r = int(input())
s = r * r * math.pi
l = r * 2 * math.pi
print("{:f} {:f}".format(s, l))
|
s896141113 | p02400 | u592365052 | 1556667739 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | import math
r = int(input())
s = r * r * math.pi
l = r * 2.0 * math.pi
print("{:f} {:f}".format(s, l))
|
s707744443 | p02400 | u805716376 | 1556701332 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | import math
r = int(input())
print(f'{r**2*math.pi:.8f}')
|
s295043593 | p02400 | u773889679 | 1556798965 | Python | Python3 | py | Runtime Error | 0 | 0 | 486 | #include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <string>
#include <sstream>
#include <complex>
#include <vector>
#include <list>
#include <queue>
#include <deque>
#include <stack>
#include <map>
#include <set>
using namespace std;
typedef long long unsigned int ... |
s977295440 | p02400 | u777181309 | 1556848023 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | r = int(input())
print(2*r*np.pi, (r**2)*np.pi)
|
s997786682 | p02400 | u777181309 | 1556848154 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | r = float(input())
print(2*r*np.pi, (r**2)*np.pi)
|
s763807848 | p02400 | u777181309 | 1556848240 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import numpy as np
r = float(input())
print(2*r*np.pi, (r**2)*np.pi)
|
s164046964 | p02400 | u520674325 | 1559022492 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r = int(input())
s = r*r*math.pi
l = 2*r*math.pi
print(s,l)
|
s976991786 | p02400 | u520674325 | 1559022511 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r = int(input())
s = r*r*math.pi
l = 2*r*math.pi
print(s,l)
|
s712500320 | p02400 | u629874472 | 1559030816 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math
r = int(input())
print(r**2*math.pi,2*r*math.pi)
|
s400992388 | p02400 | u629874472 | 1559030974 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | import math
r = int(input())
print("%.10f %.10f"%(r**2*math.pi,2*r*math.pi))
|
s415287663 | p02400 | u535719732 | 1559196231 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | r = int(input())
pi = 3.14159265359
print("%.6f %.6f" %(pi*r*r,2*pi*r))
|
s500675510 | p02400 | u839788696 | 1559365867 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r = int(input())
pi =math.pi
print(r*r*pi,2*r*pi)
|
s964376926 | p02400 | u435158342 | 1559400357 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
a=int(input())
print('{0:.6f} {1:.6f}'.format(a*a*math.pi, (a+a)*math.pi))
|
s975373636 | p02400 | u015712946 | 1559525026 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | from math import pi // 円周率
r = float(input())
area = r * r * pi
cir =(r+r) * pi
print(f'{(area):.6f} {(cir):.6f}')
|
s253181261 | p02400 | u428848588 | 1559540304 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | from math import pi
r = float(input())
area = r * r * pi
cir = (r+r) * pi
pirnt(f'{(area):.6f} {(cir):.6f}')
|
s764756910 | p02400 | u003684951 | 1559540327 | Python | Python | py | Runtime Error | 0 | 0 | 108 | from math import pi
r = float(input())
area = r * r * pi
cir =(r+r) * pi
print(f'{(area):.6f}{(cir):.6f}')
|
s633554795 | p02400 | u003684951 | 1559540512 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | from math import pi
r = float(input())
area = r * r * pi
cir =(r+r) * pi
print(f'{(area):.6 f}{(cir):.6 f}')
|
s285186164 | p02400 | u907094926 | 1405755746 | Python | Python | py | Runtime Error | 0 | 0 | 69 | r = float(raw_input())
print "%0.6f %0.6f" % (r * r * pi, 2 * pi * r) |
s312943518 | p02400 | u630546605 | 1408647349 | Python | Python3 | py | Runtime Error | 0 | 0 | 162 | # Python 3+
import sys
import math
#file = open("test.txt")
file = sys.stdin
r = int(file.readline())
l = 2*math.pi*r
s = math.pi*r*r
print("%.6f %.6f"%(s, l)) |
s704127527 | p02400 | u630546605 | 1408647707 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | import sys
import math
#file = open("test.txt")
file = sys.stdin
r = int(file.readline())
l = 2*math.pi*r
s = math.pi*r*r
print("%.6f %.6f"%(s, l))
sys.exit(0) |
s067099279 | p02400 | u426030396 | 1409837463 | Python | Python | py | Runtime Error | 0 | 0 | 76 | import math
i=int(raw_input())
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi) |
s166907364 | p02400 | u426030396 | 1409837630 | Python | Python | py | Runtime Error | 0 | 0 | 76 | import math
i=int(raw_input())
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi) |
s810462892 | p02400 | u426030396 | 1409837640 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import math
i=int(raw_input())
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi) |
s108765403 | p02400 | u426030396 | 1409837923 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
i=float(raw_input())
print "%.6f %.6f" % (i*i*math.pi,2*i*math.pi) |
s842328398 | p02400 | u607831289 | 1415987912 | Python | Python | py | Runtime Error | 0 | 0 | 82 | from math import pi
r = int(raw_input())
print '%f %f' % (pi * r ** 2, 2 * pi * r) |
s748782163 | p02400 | u017764209 | 1417087122 | Python | Python | py | Runtime Error | 0 | 0 | 48 | r = input()
print '%.6f %.6' % (r*3.14,r*r*3.14) |
s741514868 | p02400 | u017764209 | 1417088216 | Python | Python | py | Runtime Error | 0 | 0 | 57 | import math
print '%.6f %.6f' % (r*r*math.pi,2*r*math.pi) |
s764796870 | p02400 | u580607517 | 1420281308 | Python | Python | py | Runtime Error | 0 | 0 | 121 | import math
a = int(raw_input())
b = (pow(a, 2) * math.pi)
c = 2 * a * math.pi
print format(b,"0.6f"), format(c, ".6f") |
s798012454 | p02400 | u580607517 | 1420281443 | Python | Python | py | Runtime Error | 0 | 0 | 120 | import math
a = int(raw_input())
b = (pow(a, 2) * math.pi)
c = 2 * a * math.pi
print format(b,"0.6f"), format(c, ".6f") |
s187691403 | p02400 | u067975558 | 1422411743 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import math
r = int(input())
print(r * r * math.pi, r * 2 * math.pi) |
s681252868 | p02400 | u131984977 | 1422411784 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | from math import pi
r = int(input())
s = r * r * pi
l = r * 2 * pi
print(s, l) |
s757395395 | p02400 | u067975558 | 1422411784 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | r = int(input())
p = from math import pi
print(r * r * p, r * 2 * p) |
s955509113 | p02400 | u067975558 | 1422411853 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | r = int(input())
p = from math import pi
print('{0} {1:.6f}'.format(r * r * p, r * 2 * p)) |
s120325087 | p02400 | u131984977 | 1422411865 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
r = int(input())
s = r * r * math.pi
l = r * 2 * math.pi
print(s, l) |
s875332536 | p02400 | u067975558 | 1422411882 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | import math
r = int(input())
p = math.pi
print('{0} {1:.6f}'.format(r * r * p, r * 2 * p)) |
s486355618 | p02400 | u131984977 | 1422411968 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | pi = 3.141592653589793
r = int(input())
s = r * r * pi
l = r * 2 * pi
print(s, l) |
s180495011 | p02400 | u067975558 | 1422411999 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 |
r = int(input())
p = 3.14
print('{0} {1:.6f}'.format(r * r * p, r * 2 * p)) |
s025212041 | p02400 | u823030818 | 1422412001 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | pi = 3.141592653589793
r = int(input().rstrip().split())
a = r * r * pi
b = r * pi
print(a, b) |
s955609609 | p02400 | u823030818 | 1422412141 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
r= float(input().rstrip().split(' ')
a = r * r * math
b = r * math
print(a, b) |
s156802296 | p02400 | u823030818 | 1422412188 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | import math
r= float(input().rstrip().split(' ')
a = 2r * math
b = r * math
print(a, b) |
s791816438 | p02400 | u823030818 | 1422412246 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | import math
r= float(input().rstrip().split(' ')
a = 2r * math.PI
b = r * math.PI
print(a, b) |
s991280930 | p02400 | u823030818 | 1422412258 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | import math
r= float(input().rstrip().split(' ')
a = 2r * math.pi
b = r * math.pi
print(a, b) |
s143383471 | p02400 | u823030818 | 1422412271 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | import math
r= float(input().rstrip().split(' ')
a = 2r * math.PI
b = r * math.PI
print(a, b) |
s622714581 | p02400 | u823030818 | 1422412382 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | import math
r= float(input().rstrip().split(' ')
a = r * 2math.PI
b = r * math.PI
print(a, b) |
s498942639 | p02400 | u823030818 | 1422412413 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | import math
r= float(input().rstrip().split(' ')
a = r * pi
b = r * pi
print(a, b) |
s032840560 | p02400 | u823030818 | 1422412452 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r= float(input().rstrip().split(' ')
a = r * 2pi
b = r * pi
print(a, b) |
s210618385 | p02400 | u823030818 | 1422412477 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
r= float(input().rstrip().split(' ')
a = 2 * pi * r
b = r * pi
print(a, b) |
s332332261 | p02400 | u823030818 | 1422412509 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | import math
r= float(input().rstrip().split(' ')
a = 2 * pi * r
b = 2pir
print(a, b) |
s764673208 | p02400 | u823030818 | 1422412539 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
r= float(input().rstrip().split(' ')
a = r * r * pi
b = 2 * pi * r
print(a, b) |
s532303890 | p02400 | u823030818 | 1422412595 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math
r= float(input())
a = r * r * pi
b = 2 * pi * r
print(a, b) |
s482483791 | p02400 | u297342993 | 1422412929 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | import math
r = float(input())
x = 2 * Math.pi * r
y = r / 2 * r / 2 * Math.pi
print('{0:.6f} {1:.6f}'.format(x,y)) |
s307317428 | p02400 | u297342993 | 1422413068 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | import math
r = float(input())
x = 2 * math.pi * r
y = r / 2 * r / 2 * Math.pi
print('{0:.6f} {1:.6f}'.format(x,y)) |
s120508969 | p02400 | u744114948 | 1423743608 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r=int(input())
print("{:6f} {:6f}".format(r**2*math.pi,r*2*math.pi)) |
s438038004 | p02400 | u744114948 | 1423743647 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r=int(input())
print("{:0.6f} {:0.6f}".format(r**2*math.pi,r*2*math.pi)) |
s172424894 | p02400 | u744114948 | 1423743851 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | r=int(input())
print("{:0.6f} {:0.6f}".format(r**2*3.14159265,r*2*3.14159265)) |
s234670930 | p02400 | u744114948 | 1423743883 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
r=int(input())
print("{:6f} {:6f}".format(r*r*math.pi,r*2*math.pi)) |
s145230143 | p02400 | u744114948 | 1423743929 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r=int(input())
print("{} {}".format(r*r*math.pi,r*2*math.pi)) |
s293665645 | p02400 | u355726239 | 1426519995 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import math
PI = math.pi
r = int(input())
s = PI*r**2
l = 2*r*PI
print('%.6f %.6f' % (s, l)) |
s979934225 | p02400 | u949338836 | 1427202085 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | #coding:utf-8
#1_4_B 2015.3.24
import math
r = int(input())
area = r ** 2 * math.pi
circumference = 2 * r * math.pi
print('{0:.6f} {1:.6f}'.format(area,circumference)) |
s919258371 | p02400 | u137212517 | 1429544952 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | import math
r = int(input())
print(r * r * math.pi, 2 * r * math.pi) |
s916459969 | p02400 | u137212517 | 1429545011 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | import math
r = int(input())
print(r * r * math.pi, 2 * r * math.pi) |
s167363491 | p02400 | u137212517 | 1429545076 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | import math
r = int(input())
print(r * r * math.pi, 2 * r * math.pi) |
s805858443 | p02400 | u137212517 | 1429545247 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | import math
r = int(input())
print(3.14, 3.14) |
s318606411 | p02400 | u137212517 | 1429545473 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | import math
r = int(input())
print(22, 222) |
s077252488 | p02400 | u137212517 | 1429545537 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | r = int(input())
print(2, 2) |
s065662117 | p02400 | u454022848 | 1430269206 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math as m
r=int(input())
print("%.6f"%(r**2*m.pi),"%.6f"%(r*2*m.pi)) |
s661669468 | p02400 | u454022848 | 1430269239 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | import math as m
r=int(input())
print("%.6f"%(r**2*m.pi),"%.6f"%(r*2*m.pi)) |
s240123592 | p02400 | u454022848 | 1430269281 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import math
r=int(input())
print("%.6f"%(r**2*math.pi),"%.6f"%(r*2*math.pi)) |
s588553003 | p02400 | u777299405 | 1434003196 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(input())
print(r * r * math.pi, 2 * r * math.pi) |
s288233341 | p02400 | u777299405 | 1434003293 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | from math import pi
r = float(input())
print(r * r * math.pi, 2 * r * math.pi) |
s820498851 | p02400 | u571345655 | 1434461960 | Python | Python | py | Runtime Error | 0 | 0 | 116 | # coding=utf-8
from math import pi
r = float(raw_input().split())
print "{0:f} {1:f}".format(pi * r * r, 2 * pi * r) |
s652880405 | p02400 | u172616925 | 1435323825 | Python | Python | py | Runtime Error | 0 | 0 | 101 | import math
r = map(float, raw_input())
a = r * r * math.pi
b = 2 * r * math.pi
print "%f %f" % (a,b) |
s691944212 | p02400 | u172616925 | 1435323854 | Python | Python | py | Runtime Error | 0 | 0 | 110 | import math
r = map(float, raw_input())
a = r[0] * r[0] * math.pi
b = 2 * r[0] * math.pi
print "%f %f" % (a,b) |
s982899119 | p02400 | u609407244 | 1436076867 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r = int(input())
print('%.7f %.7f' % (r * r * math.pi, 2 * r * math.pi)) |
s254970348 | p02400 | u614711522 | 1439168039 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | import math
r = float( input())
s = r * r * math.PI
l = ( r + r) * math.PI
print( '{0:.5f} {1:.5f}'.format( s, l)) |
s681088669 | p02400 | u152353734 | 1439772429 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
r = fr
s = math.pi
l =
print('%.5f %.5f' % (s, l)) |
s152268303 | p02400 | u152353734 | 1439834340 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import math
r = int(input())
print('%.5f %.5f' % (r * r * math.pi, 2 * r * math.pi)) |
s459080435 | p02400 | u501414488 | 1439855351 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | import math
r = float(import())
s = r * r * math.pi
l = r * 2 * math.pi
print('%.5f %.5f' % (s, l)) |
s293800778 | p02400 | u501414488 | 1439855409 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = float(imput())
s = r * r * math.pi
l = r * 2 * math.pi
print('%.5f %.5f' % (s, l)) |
s130906717 | p02400 | u501414488 | 1439855428 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | import math
r = float(input())
s = r * r * math.pi
l = r * 2 * math.pi
print('%.5f %.5f' % (s, l))(a, b) |
s491263626 | p02400 | u997158994 | 1441016206 | Python | Python | py | Runtime Error | 0 | 0 | 73 | from math import pi
r=int(raw_input())
print ("%f %f" %(pi*r**2, 2*pi*r)) |
s593656588 | p02400 | u734743631 | 1442545847 | Python | Python | py | Runtime Error | 0 | 0 | 81 | import math
r = int(raw_input())
print "%f %f"%(math.pi * r * r, 2 * math.pi * r) |
s072746606 | p02400 | u072053884 | 1442827921 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | import math
r = input()
r = int(r)
area = math.pi * (r ** 2)
length = 2 * math.pi * r
print("{0:.5f} {1:.5f}".format(area, length)) |
s495234240 | p02400 | u180914582 | 1443513589 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | import math
??
r = input()
r = float(r)
??
area = math.pi * (r ** 2)
length = 2 * math.pi * r
??
print("{0:.5f} {1:.5f}".format(area, length)) |
s121591399 | p02400 | u313994256 | 1443924929 | Python | Python | py | Runtime Error | 0 | 0 | 100 | r = map(int,raw_input().split())
print r[0]*r[0]*3.141592653589793
print r[0]*2*3.141592653589793 |
s806670405 | p02400 | u278714855 | 1446003204 | Python | Python | py | Runtime Error | 0 | 0 | 84 | import math
r=int(raw_input())
s=float(r)*r*math.pi
l=float(r)*2*math.pi
print s,l |
s864092543 | p02400 | u695952004 | 1447517912 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | import math
r = int(input())
print('%f %f' %(r ** 2 * math.pi, r * 2 * math.pi)) |
s711574000 | p02400 | u775586391 | 1447782798 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | from math import pi
r = int(input())
d = pi*r*r
l = 2*pi*r
print(d,l) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.