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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s476849028 | p02400 | u811841526 | 1449073267 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | import math
r = int(input())
area = math.pi * r**2
circumference = 2 * math.pi * r
print(area, circumference) |
s215026120 | p02400 | u811841526 | 1449073353 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | pi = 3.14159265358979
r = int(input())
area = pi * r**2
circumference = 2 * pi * r
print(area, circumference) |
s699887725 | p02400 | u982632052 | 1449239258 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | import math
r = int(input())
area = math.pi * r ** 2
circumference = 2 * math.pi * r
print('{0} {1}'.format(area, circumference)) |
s165227974 | p02400 | u297949443 | 1449931005 | Python | Python | py | Runtime Error | 0 | 0 | 106 | import sys
import math
r = int(sys.stdin.readline())
print('%.5f %.5f' % (r**2 * math.pi, r*2 * math,pi)) |
s685248113 | p02400 | u297949443 | 1449931031 | Python | Python | py | Runtime Error | 0 | 0 | 108 | import sys
import math
r = float(sys.stdin.readline())
print('%.5f %.5f' % (r**2 * math.pi, r*2 * math,pi)) |
s576784157 | p02400 | u003762655 | 1450365412 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
r=int(input())
S=r*r*math.pi
L=2*r*math.pi
print('%.6f %.6f'%(S,L)) |
s822265348 | p02400 | u003762655 | 1450365450 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
r=int(input())
S=r*r*math.pi
L=2*r*math.pi
print('%.5f %.5f'%(S,L)) |
s074430259 | p02400 | u279955105 | 1450511612 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | import math
r = input().split()
t = int(r[0])
a = math.pi * t**2
b = 2 * t * math.pi
print(str("{0:.10f}".format(a)) + " " + "{0:.10f}".format(b)) |
s983471403 | p02400 | u279955105 | 1450511650 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | import math
r = input().split()
t = int(r[0])
a = math.pi * t**2
b = 2 * t * math.pi
print(str("{0:.8f}".format(a)) + " " + "{0:.8f}".format(b)) |
s656209183 | p02400 | u995990363 | 1450880836 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | # -*- coding: utf-8 -*-
import numpy as np
r = float( input() )
area = r * r * np.pi
circle = 2 * r * np.pi
print(format(area, '.10f'), format(circle, '.10f')) |
s721959324 | p02400 | u038005340 | 1453257380 | Python | Python | py | Runtime Error | 0 | 0 | 100 | import math
r = int( raw_input() )
S = math.pi * r ** 2
l = 2 * r * math.pi
print"%f %f" %(S,l) |
s521401852 | p02400 | u038005340 | 1453257388 | Python | Python | py | Runtime Error | 0 | 0 | 101 | import math:
r = int( raw_input() )
S = math.pi * r ** 2
l = 2 * r * math.pi
print"%f %f" %(S,l) |
s098167116 | p02400 | u038005340 | 1453257406 | Python | Python | py | Runtime Error | 0 | 0 | 103 | import math:
r = float( raw_input() )
S = math.pi * r ** 2
l = 2 * r * math.pi
print"%f %f" %(S,l) |
s577137743 | p02400 | u613805578 | 1453296434 | Python | Python | py | Runtime Error | 0 | 0 | 101 | import math
pi = math.pi
r = raw_input()
area = r * r * pi
cir = 2 * r *pi
print '%f %f' %(area, cir) |
s593736834 | p02400 | u613805578 | 1453296480 | Python | Python | py | Runtime Error | 0 | 0 | 88 | import math
r = raw_input()
area = r * r * pi
cir = 2 * r *pi
print '%f %f' %(area, cir) |
s089551803 | p02400 | u613805578 | 1453296504 | Python | Python | py | Runtime Error | 0 | 0 | 93 | from import math
r = raw_input()
area = r * r * pi
cir = 2 * r *pi
print '%f %f' %(area, cir) |
s578571969 | p02400 | u613805578 | 1453296573 | Python | Python | py | Runtime Error | 0 | 0 | 104 | from import math
r = raw_input()
area = r * r * math.pi
cir = 2 * r * math.pi
print '%f %f' %(area, cir) |
s612348117 | p02400 | u613805578 | 1453296587 | Python | Python | py | Runtime Error | 0 | 0 | 105 | from import math
r = raw_input()
area = r * r * math.pi
cir = 2 * r * math.pi
print '%f %f' % (area, cir) |
s264373717 | p02400 | u613805578 | 1453296592 | Python | Python | py | Runtime Error | 0 | 0 | 100 | import math
r = raw_input()
area = r * r * math.pi
cir = 2 * r * math.pi
print '%f %f' % (area, cir) |
s183008335 | p02400 | u613805578 | 1453296714 | Python | Python | py | Runtime Error | 0 | 0 | 112 | import math
r = raw_input()
area = r * r * math.pi * 1.0
cir = 2 * r * math.pi * 1.0
print '%f %f' % (area, cir) |
s345278611 | p02400 | u724923896 | 1453305020 | Python | Python | py | Runtime Error | 0 | 0 | 75 | r = input()
l = 2*pi*r
s = r*r*pi
print "%.8f %.8f" %(float(l), float(s)) |
s887942880 | p02400 | u724923896 | 1453305089 | Python | Python | py | Runtime Error | 0 | 0 | 87 | r = input()
l = 2*math.pi*r
s = r*r*math.pi
print "%.8f %.8f" %(float(l), float(s)) |
s097561074 | p02400 | u724923896 | 1453305180 | Python | Python | py | Runtime Error | 0 | 0 | 89 | r = input()
l = 2*math.pi*r
s = r*r*math.pi
print "%.8f %.8f" %(float(s), float(l)) |
s142388639 | p02400 | u724923896 | 1453305216 | Python | Python | py | Runtime Error | 0 | 0 | 81 | r = float_input()
l = 2*math.pi*r
s = r*r*math.pi
print "%.8f %.8f" %(s, l) |
s421838500 | p02400 | u724923896 | 1453305253 | Python | Python | py | Runtime Error | 0 | 0 | 84 | r = float(input())
l = 2*math.pi*r
s = r*r*math.pi
print "%.8f %.8f" %(s, l) |
s358133132 | p02400 | u047737909 | 1453305913 | Python | Python | py | Runtime Error | 0 | 0 | 95 | import math
r= map(int, raw_input().split())
a=float(r)*float(r)*??
b=2*float(r)*??
print a,b |
s350001320 | p02400 | u047737909 | 1453306033 | Python | Python | py | Runtime Error | 0 | 0 | 105 | import math
r= map(int, raw_input().split())
a=float(r)*float(r)*math.pi
b=2*float(r)*math.pi
print a,b |
s041062349 | p02400 | u047737909 | 1453306273 | Python | Python | py | Runtime Error | 0 | 0 | 57 | r=input()
a=r*r*math.pi
b=2*r*math.pi
print "%f %f"%(a,b) |
s338145854 | p02400 | u885889402 | 1453364652 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
a=int(input())
L = 2*math.pi*a
s = a*a*math.pi
print(???%.6f???%(L),???%.6f???%(s)) |
s238562716 | p02400 | u885889402 | 1453364771 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
a=int(input())
L = 2*math.pi*a
s = a*a*math.pi
print("%.6f"%(L),"%.6f"%(s)) |
s698753960 | p02400 | u078762447 | 1453374168 | Python | Python | py | Runtime Error | 0 | 0 | 81 | r = int(raw_input())
pi = 3.14159265358
s = r * r * pi
l = 2 * r * pi
print s,r |
s517769769 | p02400 | u078762447 | 1453374209 | Python | Python | py | Runtime Error | 0 | 0 | 81 | r = int(raw_input())
pi = 3.14159265358
s = r * r * pi
l = 2 * r * pi
print s,l |
s094308928 | p02400 | u078762447 | 1453374244 | Python | Python | py | Runtime Error | 0 | 0 | 81 | r = int(raw_input())
pi = 3.14159265358
s = r * r * pi
l = 2 * r * pi
print s,l |
s694320112 | p02400 | u828153094 | 1453398850 | Python | Python | py | Runtime Error | 0 | 0 | 81 | r = int(raw_input())
p = 3.141592
print p * float(r)**2,
print 2.0 * p * float(r) |
s305371136 | p02400 | u619765879 | 1453441108 | Python | Python | py | Runtime Error | 0 | 0 | 51 | r = float(input())
print '%f %f' % (2*pi*r, pi*r^2) |
s441875581 | p02400 | u619765879 | 1453441155 | Python | Python | py | Runtime Error | 0 | 0 | 61 | r = float(input())
print '%f %f' % (2*math.pi*r, math.pi*r^2) |
s766167272 | p02400 | u619765879 | 1453441175 | Python | Python | py | Runtime Error | 0 | 0 | 54 | r = input()
print '%f %f' % (2*math.pi*r, math.pi*r^2) |
s752806099 | p02400 | u619765879 | 1453441209 | Python | Python | py | Runtime Error | 0 | 0 | 73 | import math
r = float(input())
print '%f %f' % (2*math.pi*r, math.pi*r^2) |
s823721188 | p02400 | u619765879 | 1453441266 | Python | Python | py | Runtime Error | 0 | 0 | 73 | import math
r = float(input())
print '%f %f' % (2*math.pi*r, math.pi*r^2) |
s585574788 | p02400 | u619765879 | 1453441299 | Python | Python | py | Runtime Error | 0 | 0 | 61 | r = float(input())
print '%f %f' % (2*math.pi*r, math.pi*r^2) |
s230480417 | p02400 | u619765879 | 1453441381 | Python | Python | py | Runtime Error | 0 | 0 | 75 | r = float(input())
print '%f %f' % (2*3.141592653589*r, 3.141592653589*r^2) |
s577744818 | p02400 | u619765879 | 1453441491 | Python | Python | py | Runtime Error | 0 | 0 | 61 | r = float(input())
print '%f %f' % (2*math.pi*r, math.pi*r*r) |
s960681425 | p02400 | u619765879 | 1453441909 | Python | Python | py | Runtime Error | 0 | 0 | 63 | r = float(input())
print '%.5f %.5f' % (2*math.pi*r, math.pi*r) |
s203360658 | p02400 | u619765879 | 1453446746 | Python | Python | py | Runtime Error | 0 | 0 | 53 | r = float(input())
print '%f %f' % (math.pi, math.pi) |
s558194028 | p02400 | u619765879 | 1453446760 | Python | Python | py | Runtime Error | 0 | 0 | 43 | r = float(input())
print '%f %f' % (pi, pi) |
s042307007 | p02400 | u619765879 | 1453446783 | Python | Python | py | Runtime Error | 0 | 0 | 55 | import math
r = float(input())
print '%f %f' % (pi, pi) |
s131899542 | p02400 | u619765879 | 1453446832 | Python | Python | py | Runtime Error | 0 | 0 | 73 | import math
r = float(input())
print '%f %f' % (2*math.pi*r, math.pi*r^2) |
s242840302 | p02400 | u619765879 | 1453446903 | Python | Python | py | Runtime Error | 0 | 0 | 73 | import math
r = float(input())
print '%f %f' % (math.pi*r^2, 2*math.pi*r) |
s321755045 | p02400 | u020577611 | 1453547582 | Python | Python | py | Runtime Error | 0 | 0 | 85 | import math
k=int(raw_input())
s=k*k*math.pi
t=2*k*math.pi
print "%.6f %.6f"%(s,t) |
s638142815 | p02400 | u020577611 | 1453547621 | Python | Python | py | Runtime Error | 0 | 0 | 85 | import math
k=int(raw_input())
s=k*k*math.pi
t=2*k*math.pi
print "%.6f %.6f"%(s,t) |
s142966567 | p02400 | u967035362 | 1453553845 | Python | Python | py | Runtime Error | 0 | 0 | 58 | import ans1
import ans2
r = float(ans1.stdin.readline()) |
s992869513 | p02400 | u967035362 | 1453553853 | Python | Python | py | Runtime Error | 0 | 0 | 58 | import ans1
import ans2
r = float(ans1.stdin.readline()) |
s743809385 | p02400 | u967035362 | 1453553871 | Python | Python | py | Runtime Error | 0 | 0 | 111 | import ans1
import ans2
r = float(ans1.stdin.readline())
print('%.5f %.5f' % (r**2 * ans2.pi, r*2 * ans2.pi)) |
s211242436 | p02400 | u824204304 | 1453712784 | Python | Python | py | Runtime Error | 0 | 0 | 103 | def sircle():
r = raw_input()
r = int(r)
a = r*r*3.141592
b = 2 * r 3.141592
print "a b" |
s618191985 | p02400 | u824204304 | 1453712797 | Python | Python | py | Runtime Error | 0 | 0 | 90 |
r = raw_input()
r = int(r)
a = r*r*3.141592
b = 2 * r 3.141592
print "a b" |
s539240004 | p02400 | u824204304 | 1453713029 | Python | Python | py | Runtime Error | 0 | 0 | 94 | r = raw_input()
r = float(r)
a = r*r*3.141592653
b = 2 * r 3.141592653
print "%.9f %.9f"%(a,b) |
s067193062 | p02400 | u119456964 | 1453778258 | Python | Python | py | Runtime Error | 0 | 0 | 75 | import math
r = int(raw_input())
print '%f %f' %(r*r*math.pi, 2*r*math.pi) |
s646135322 | p02400 | u119456964 | 1453779975 | Python | Python | py | Runtime Error | 0 | 0 | 94 | import math
r = int(raw_input())
V = r*r*math.pi
S = 2*r*math.pi
print '{0} {1}'.format(V, S) |
s004031931 | p02400 | u119456964 | 1453780099 | Python | Python | py | Runtime Error | 0 | 0 | 87 | import math
r = int(raw_input())
V = r*r*math.pi
S = 2*r*math.pi
print '%f %f' %(V, S) |
s073536061 | p02400 | u119456964 | 1453780504 | Python | Python | py | Runtime Error | 0 | 0 | 87 | import math
r = int(raw_input())
V = r*r*math.pi
S = 2*r*math.pi
print '%f %f' %(V, S) |
s278124400 | p02400 | u177295149 | 1453791799 | Python | Python | py | Runtime Error | 0 | 0 | 55 | r = raw_input()
print"math.pi*2*%d math.pi*r**2" % (r) |
s781362456 | p02400 | u177295149 | 1453791908 | Python | Python | py | Runtime Error | 0 | 0 | 79 | r = raw_input()
l = float(math.pi)*2*r
s =float(math.pi)*r**2
print'l s' % (r) |
s317598372 | p02400 | u177295149 | 1453792711 | Python | Python | py | Runtime Error | 0 | 0 | 92 | import math
r = raw_input()
l = float(math.pi)*2*r
s =float(math.pi)*r**2
print'l s' % (r) |
s668733374 | p02400 | u177295149 | 1453792715 | Python | Python | py | Runtime Error | 0 | 0 | 92 | import math
r = raw_input()
l = float(math.pi)*2*r
s =float(math.pi)*r**2
print'l s' % (r) |
s046761089 | p02400 | u177295149 | 1453792744 | Python | Python | py | Runtime Error | 0 | 0 | 92 | import math
r = raw_input()
l = float(math.pi)*2*r
s =float(math.pi)*r**2
print'l s' % (r) |
s018201573 | p02400 | u177295149 | 1453792773 | Python | Python | py | Runtime Error | 0 | 0 | 74 | import math
r = raw_input()
l = math.pi*2*r
s = math.pi*r**2
print'l s' |
s996063454 | p02400 | u177295149 | 1453792801 | Python | Python | py | Runtime Error | 0 | 0 | 85 | import math
r = raw_input()
l = math.pi*2*r
s = math.pi*r**2
print'%f %f' % (l, s) |
s806030112 | p02400 | u177295149 | 1453792993 | Python | Python | py | Runtime Error | 0 | 0 | 92 | from math import *
r = raw_input()
l = math.pi*2*r
s = math.pi*r**2
print'%f %f' % (l, s) |
s908263626 | p02400 | u177295149 | 1453793032 | Python | Python | py | Runtime Error | 0 | 0 | 90 | import math
r = int(raw_input())
l = math.pi*2*r
s = math.pi*r**2
print'%f %f' % (s, l) |
s824408670 | p02400 | u177295149 | 1453793054 | Python | Python | py | Runtime Error | 0 | 0 | 89 | import math
r = int(raw_input())
l = math.pi*2*r
s = math.pi*r*r
print'%f %f' % (s, l) |
s129020002 | p02400 | u233232390 | 1453811705 | Python | Python | py | Runtime Error | 0 | 0 | 74 | import math
r = raw_input()
print "%.4f %.4f" %(r*r*math.pi , r*2*math.pi) |
s077303749 | p02400 | u920118302 | 1453812200 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | import math
r = int(input())
S = math.pi * r**2
L = 2 * math.pi * r
print(S, L) |
s708452734 | p02400 | u920118302 | 1453812351 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
S = math.pi * r**2
L = 2 * math.pi * r
print("%.6f"% S, "%.6f"% L) |
s142522370 | p02400 | u393769849 | 1453813208 | Python | Python | py | Runtime Error | 0 | 0 | 75 | import math
r = import()
print ("%f.6 %f.6" % (math.pi*r*r, math.2*pi*r)) |
s305074744 | p02400 | u393769849 | 1453813230 | Python | Python | py | Runtime Error | 0 | 0 | 71 | import math
r = import()
print ("%f %f" % (math.pi*r*r, math.2*pi*r)) |
s539151654 | p02400 | u393769849 | 1453813253 | Python | Python | py | Runtime Error | 0 | 0 | 71 | import math
r = import()
print ("%f %f" % (math.pi*r*r, 2*math.pi*r)) |
s049633544 | p02400 | u393769849 | 1453813310 | Python | Python | py | Runtime Error | 0 | 0 | 78 | import math
r = imput()
print ("%f %f" % (math.pi * r * r, 2 * math.pi * r)) |
s191791251 | p02400 | u393769849 | 1453813347 | Python | Python | py | Runtime Error | 0 | 0 | 77 | import math
r = imput()
print("%f %f" % (math.pi * r * r, 2 * math.pi * r)) |
s613676219 | p02400 | u393769849 | 1453813363 | Python | Python | py | Runtime Error | 0 | 0 | 78 | import math
r = imput()
print("%f %f" % (math.pi * r ** 2, 2 * math.pi * r)) |
s313547179 | p02400 | u803327846 | 1453820282 | Python | Python | py | Runtime Error | 0 | 0 | 89 | import math
r = float(raw_input())
S = r ** 2 * pi
R = 2 * r * pi
print "%f %f" %(S,R) |
s062357362 | p02400 | u731710433 | 1454335746 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r = int(input())
print((r * r * math.pi), (2 * r * math.pi)) |
s904045724 | p02400 | u682357930 | 1454410500 | Python | Python | py | Runtime Error | 0 | 0 | 46 | import.math
r = input()
print pi*r*r, 2*pi*r |
s757512571 | p02400 | u682357930 | 1454410978 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math
r = input()
s = pi*r*r
l = 2.0*pi*r
print(s,l) |
s254680243 | p02400 | u682357930 | 1454410992 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | import math
r = eval(input())
s = pi*r*r
l = 2.0*pi*r
print(s,l) |
s769287359 | p02400 | u682357930 | 1454411016 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | import math
r = input()
s = r*r
l = 2.0*r
print(s,l) |
s672004937 | p02400 | u682357930 | 1454411026 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | r = input()
s = r*r
l = 2.0*r
print(s,l) |
s806662844 | p02400 | u682357930 | 1454419476 | Python | Python | py | Runtime Error | 0 | 0 | 70 | import math
r = int(raw_input())
s = pi*r*r
l = 2.0*pi*r
print s, r |
s798076845 | p02400 | u682357930 | 1454419538 | Python | Python | py | Runtime Error | 0 | 0 | 67 | r = int(raw_input())
s = math.pi*r*r
l = 2.0*math.pi*r
print s, l |
s591256112 | p02400 | u682357930 | 1454419557 | Python | Python | py | Runtime Error | 0 | 0 | 67 | r = (int)raw_input()
s = math.pi*r*r
l = 2.0*math.pi*r
print s, l |
s328295374 | p02400 | u682357930 | 1454419573 | Python | Python | py | Runtime Error | 0 | 0 | 61 | r = (int)raw_input()
s = 3.14*r*r
l = 2.0*3.14*r
print s, l |
s723767951 | p02400 | u682357930 | 1454419648 | Python | Python | py | Runtime Error | 0 | 0 | 76 | r = map(float, raw_input().split())
s = 3.14*r*r
l = 2.0*3.14*r
print s, l |
s206409303 | p02400 | u682357930 | 1454419701 | Python | Python | py | Runtime Error | 0 | 0 | 34 | r = (float)raw_input()
print r, r |
s075771053 | p02400 | u682357930 | 1454419961 | Python | Python | py | Runtime Error | 0 | 0 | 76 | r = (float)input()
pi = 3.141592
s = pi * r * r
l = 2.0 * pi * r
print s, l |
s630696572 | p02400 | u682357930 | 1454420221 | Python | Python | py | Runtime Error | 0 | 0 | 91 | r = input()
pi = 3.14159265359
s = pi * Decimal(r)**2
l = 2.0 * pi * Decimal(r)
print s, l |
s384707888 | p02400 | u682357930 | 1454420240 | Python | Python | py | Runtime Error | 0 | 0 | 91 | r = input()
pi = 3.14159265359
s = pi * decimal(r)**2
l = 2.0 * pi * decimal(r)
print s, l |
s892214162 | p02400 | u682357930 | 1454420348 | Python | Python | py | Runtime Error | 0 | 0 | 73 | import math
r = input()
s = math.pi * r**2
l = 2.0 * pi * r
print s, l |
s986507221 | p02400 | u974554153 | 1454420704 | Python | Python | py | Runtime Error | 0 | 0 | 73 | r=map(int,raw_input().split())
print ('%f %f' % (float2*??*r,floatr*r*??) |
s025402596 | p02400 | u974554153 | 1454420776 | Python | Python | py | Runtime Error | 0 | 0 | 75 | r=map(int,raw_input().split())
print ('%f %f' (float2*M_PI*r,floatr*r*M_PI) |
s121077146 | p02400 | u974554153 | 1454420804 | Python | Python | py | Runtime Error | 0 | 0 | 79 | r=map(int,raw_input().split())
print ('%f %f' (float(2*M_PI*r),float(r*r*M_PI)) |
s121565775 | p02400 | u279955105 | 1454747359 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
a = math.pi * r**2
b = math.pi * r * 2
print(str(a) + " " + str(b)) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.