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
s622227838
p02400
u933096856
1505005047
Python
Python3
py
Runtime Error
0
0
59
import math r=int(input()) print(math.pi*r**2, math.pi*2*r)
s682297037
p02400
u688488162
1505109502
Python
Python3
py
Runtime Error
0
0
120
import math r = int(input()) s = float(2 * math.pi * r) circle = float(math.pi * r**2) print("%.7f %.7f" %(s,circle))
s081704251
p02400
u688488162
1505109543
Python
Python3
py
Runtime Error
0
0
106
import math r = int(input()) s = 2 * math.pi * r circle = math.pi * r**2 print("%.7f %.7f" %(s,circle))
s431514596
p02400
u688488162
1505109587
Python
Python3
py
Runtime Error
0
0
104
from math import pi r = int(input()) s = 2 * pi * r circle = pi * r**2 print("%.7f %.7f" %(s,circle))
s255192770
p02400
u362494298
1505200374
Python
Python3
py
Runtime Error
0
0
54
r=inport() print("{0:.5f} {1:.5f}".format(??*r*r,2??r)
s306724511
p02400
u362494298
1505200558
Python
Python3
py
Runtime Error
0
0
61
r=(int. inport()) print("{0:.5f} {1:.5f}".format(??*r*r,2??r)
s297479678
p02400
u362494298
1505201237
Python
Python3
py
Runtime Error
0
0
83
import math p=math.pi r=(int. inport()) print("{0:.5f} {1:.5f}".format(p*r*r,2*p*r)
s813925066
p02400
u362494298
1505201597
Python
Python3
py
Runtime Error
0
0
76
from math import pi r=inport() print("{0:.5f} {1:.5f}".format(pi*r*r,2*pi*r)
s705646290
p02400
u362494298
1505201702
Python
Python3
py
Runtime Error
0
0
85
from math import pi r=float(inport()??? print("{0:.5f} {1:.5f}".format(pi*r*r,2*pi*r)
s921762225
p02400
u362494298
1505214865
Python
Python3
py
Runtime Error
0
0
84
from math import pi r=float(import()) print("{0:.5f} {1:.5f}".format(pi*r*r,2*pi*r))
s268314683
p02400
u362494298
1505214921
Python
Python3
py
Runtime Error
0
0
77
from math import pi r=import() print("{0:.5f} {1:.5f}".format(pi*r*r,2*pi*r))
s271703154
p02400
u362494298
1505215167
Python
Python3
py
Runtime Error
0
0
59
from math import pi r=float(import()) print(pi*r*r, 2*pi*r)
s293987948
p02400
u362494298
1505215305
Python
Python3
py
Runtime Error
0
0
85
from math import pi r=float(import()) print("{0:.5f} {1:.5f}".format(pi*r*r, 2*pi*r))
s161800995
p02400
u362494298
1505215430
Python
Python3
py
Runtime Error
0
0
78
from math import pi r=import() print("{0:.5f} {1:.5f}".format(pi*r*r, 2*pi*r))
s159088482
p02400
u362494298
1505215584
Python
Python3
py
Runtime Error
0
0
85
from math import pi r=(int, import()) print("{0:.5f} {1:.5f}".format(pi*r*r, 2*pi*r))
s444887990
p02400
u362494298
1505215704
Python
Python3
py
Runtime Error
0
0
59
from math import pi r=float(import()) print(pi*r*r, 2*pi*r)
s680914651
p02400
u362494298
1505215731
Python
Python3
py
Runtime Error
0
0
64
from math import pi r=float(int, import()) print(pi*r*r, 2*pi*r)
s359450213
p02400
u362494298
1505215876
Python
Python3
py
Runtime Error
0
0
87
import math r=float(import()) print("{0:.5f} {1:.5f}".format(math.pi*r*r, 2*math.pi*r))
s409305164
p02400
u362494298
1505216009
Python
Python3
py
Runtime Error
0
0
77
from math import pi r=input() print("{0:.5f} {1:.5f}".format(pi*r*r, 2*pi*r))
s506029210
p02400
u362494298
1505216070
Python
Python3
py
Runtime Error
0
0
84
from math import pi r=(int, input()) print("{0:.5f} {1:.5f}".format(pi*r*r, 2*pi*r))
s733332694
p02400
u972637506
1505289508
Python
Python3
py
Runtime Error
0
0
83
from math import pi r = int(input()) print("{:.6f} {:.6f}".format(pi*r*r, 2*pi*r))
s805083271
p02400
u602702913
1505378716
Python
Python3
py
Runtime Error
0
0
86
import math a=int(input()) S=round(a*a*math.pi,6) R=round(a*2*math.pi,6) print(S,R)
s534629612
p02400
u088372268
1505611020
Python
Python3
py
Runtime Error
0
0
59
from math import pi r = int(input()) print(pi*r**2, 2*pi*r)
s824624444
p02400
u088372268
1505611042
Python
Python3
py
Runtime Error
0
0
59
from math import pi r = int(input()) print(pi*r**2, 2*pi*r)
s851840023
p02400
u186282999
1506133985
Python
Python3
py
Runtime Error
0
0
113
import math my_value = int(input()) print("{} {}".format(pow(my_value, 2) * math.pi, 2 * math.pi * my_value)) 2
s038920993
p02400
u186282999
1506134020
Python
Python3
py
Runtime Error
0
0
111
import math my_value = int(input()) print("{} {}".format(pow(my_value, 2) * math.pi, 2 * math.pi * my_value))
s225765752
p02400
u186282999
1506134080
Python
Python3
py
Runtime Error
0
0
111
import math my_value = int(input()) print("{} {}".format(pow(my_value, 2) * math.pi, 2 * math.pi * my_value))
s674468068
p02400
u011632847
1506389820
Python
Python3
py
Runtime Error
0
0
103
import math r = int(input()) print("{0:.6f}".format(math.pi * r**2), "{0:.6f}".format(2 *math.pi * r))
s574830185
p02400
u692415695
1506821108
Python
Python3
py
Runtime Error
0
0
114
# (c) midandfeed import math r = int(input()) print("{0:.6f} {0:.6f}".format( math.pi*(pow(r,2)), math.pi*(2*r) ))
s937695866
p02400
u936401118
1506906031
Python
Python3
py
Runtime Error
0
0
76
import math r = int(input()) pi = math.pi print ("%f %f" % (r*r*pi, 2*r*pi))
s791924962
p02400
u936401118
1506906095
Python
Python3
py
Runtime Error
0
0
76
import math r = int(input()) pi = math.pi print ("%f %f" % (r*r*pi, 2*r*pi))
s327054486
p02400
u239524997
1506913855
Python
Python3
py
Runtime Error
0
0
76
r = int(input()) import math print("%.6f"%(math.pi * r * r,math.pi * 2 * r))
s860246042
p02400
u256256172
1507274290
Python
Python3
py
Runtime Error
0
0
84
import math r = int(input()) a = r*r*math.pi b = 2*r*math.pi print('%f %f' % (a, b))
s484825853
p02400
u256256172
1507274439
Python
Python3
py
Runtime Error
0
0
84
import math r = int(input()) a = r*r*math.pi b = 2*r*math.pi print('%f %f' % (a, b))
s591519082
p02400
u197670577
1508072153
Python
Python
py
Runtime Error
0
0
96
import math r = int(raw_input()) print "{:.6f} {:.6f}".format(math.pi * r * r, s * math.pi * r)
s448574429
p02400
u197670577
1508072197
Python
Python
py
Runtime Error
0
0
98
import math r = float(raw_input()) print "{:.6f} {:.6f}".format(math.pi * r * r, s * math.pi * r)
s127782265
p02400
u825994660
1508166373
Python
Python3
py
Runtime Error
0
0
95
a = int(input()) import math print("{:.6f} {:.6f}".format(a ** 2 * math.pie, 2 * a * math.pie))
s359454104
p02400
u825994660
1508166396
Python
Python3
py
Runtime Error
0
0
93
a = int(input()) import math print("{:.6f} {:.6f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s974541885
p02400
u825994660
1508166448
Python
Python3
py
Runtime Error
0
0
93
a = int(input()) import math print("{:.7f} {:.7f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s015618968
p02400
u825994660
1508166467
Python
Python3
py
Runtime Error
0
0
88
a = input() import math print("{:.7f} {:.7f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s923862769
p02400
u825994660
1508245972
Python
Python3
py
Runtime Error
0
0
88
a = input() import math print("{:.7f} {:.7f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s803666741
p02400
u825994660
1508245990
Python
Python3
py
Runtime Error
0
0
93
a = int(input()) import math print("{:.7f} {:.7f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s051343661
p02400
u825994660
1508246213
Python
Python3
py
Runtime Error
0
0
94
za = int(input()) import math print("{:.5f} {:.5f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s895759221
p02400
u825994660
1508246227
Python
Python3
py
Runtime Error
0
0
93
a = int(input()) import math print("{:.5f} {:.5f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s615021322
p02400
u825994660
1508246335
Python
Python3
py
Runtime Error
0
0
93
a = int(input()) import math print("{:.5f} {:.5f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s020011224
p02400
u825994660
1508246382
Python
Python3
py
Runtime Error
0
0
93
a = int(input()) import math print("{:.6f} {:.6f}".format(a ** 2 * math.pi, 2 * a * math.pi))
s332870966
p02400
u825994660
1508246417
Python
Python3
py
Runtime Error
0
0
93
r = int(input()) import math print("{:.6f} {:.6f}".format(r ** 2 * math.pi, 2 * r * math.pi))
s606183501
p02400
u825994660
1508246428
Python
Python3
py
Runtime Error
0
0
77
import math print("{:.6f} {:.6f}".format(r ** 2 * math.pi, 2 * r * math.pi))
s649586826
p02400
u825994660
1508246439
Python
Python3
py
Runtime Error
0
0
88
r = input() import math print("{:.6f} {:.6f}".format(r ** 2 * math.pi, 2 * r * math.pi))
s854532339
p02400
u315329386
1508325790
Python
Python3
py
Runtime Error
0
0
93
import math r = int(input()) print("{:.5f} {:.5f}".format(r * r * math.pi, 2 * r * math.pi))
s610801156
p02400
u315329386
1508325942
Python
Python3
py
Runtime Error
0
0
91
from math import pi r = int(input()) print("{:.6f} {:.6f}".format(r * r * pi, 2 * r * pi))
s666327290
p02400
u315329386
1508325956
Python
Python3
py
Runtime Error
0
0
93
from math import pi r = floot(input()) print("{:.6f} {:.6f}".format(r * r * pi, 2 * r * pi))
s233433416
p02400
u845643816
1509200785
Python
Python3
py
Runtime Error
0
0
257
while True: a, op, b = input().split() a, b = int(a), int(b) if op == '?': break elif op == '+': print(a+b) elif op == '-': print(a-b) elif op == '*': print(a*b) elif op == '/': print(a//b)
s989197867
p02400
u845643816
1509200812
Python
Python3
py
Runtime Error
0
0
61
import math r = int(input()) print(2*r*math.pi, r*r*math.pi)
s134652268
p02400
u043968625
1509281764
Python
Python3
py
Runtime Error
0
0
146
import math # a,b =[int(i) for i in input().split()] r=int(input()) #r=2 A=[math.pi*r**2,2*math.pi*r] print("{0:.6f} {1:.6f}".format(A[0],A[1]))
s067441395
p02400
u043968625
1509281865
Python
Python3
py
Runtime Error
0
0
152
#import math # a,b =[int(i) for i in input().split()] r=int(input()) #r=2 pi=3.1415926535 A=[pi*r**2,2*pi*r] print("{0:.6f} {1:.6f}".format(A[0],A[1]))
s088828286
p02400
u043968625
1509282038
Python
Python3
py
Runtime Error
0
0
157
#import math # a,b =[int(i) for i in input().split()] r=int(input()) #r=2 pi=3.141592653589793 A=[pi*r**2,2*pi*r] print("{0:.5f} {1:.5f}".format(A[0],A[1]))
s767188681
p02400
u617472286
1509373591
Python
Python3
py
Runtime Error
0
0
87
r = int(input()) import math print('%.6f %.6f' % (math.pi * (r ** 2), math.pi * r * 2))
s974600543
p02400
u661529494
1509410213
Python
Python3
py
Runtime Error
0
0
73
import math r=int(input()) s=math.pi print("%.6f"%(r*r*s),"%.6f"%(2*r*s))
s521586220
p02400
u476441153
1509485630
Python
Python3
py
Runtime Error
0
0
62
a = int(input()) c = a*a * 3.14 r = (a*2) * 3.14 print (c,r)
s609489625
p02400
u476441153
1509485775
Python
Python3
py
Runtime Error
0
0
62
a = int(input()) c = a*a * 3.14 r = (a+a) * 3.14 print (c,r)
s048252767
p02400
u855694108
1509518364
Python
Python3
py
Runtime Error
0
0
149
import math def main(): r = int(input()) s = math.pi * r ** 2 l = r * 2 * math.pi print(s, l) if __name__ == "__main__": main()
s677002174
p02400
u855694108
1509518944
Python
Python3
py
Runtime Error
0
0
179
import math def main(): r = int(input()) s = math.pi * r ** 2 l = r * 2 * math.pi print(format(s, ".6f"), format(l, ".6f")) if __name__ == "__main__": main()
s121015936
p02400
u846136461
1509523944
Python
Python
py
Runtime Error
0
0
130
import math r = int(raw_input()) menseki = r ** 2 * math.pi shuu = 2 * r * math.pi print("{:.6f} {:.6f}".format(menseki, shuu))
s388250258
p02400
u846136461
1509524163
Python
Python
py
Runtime Error
0
0
119
r = int(raw_input()) menseki = r ** 2 * 3.141592 shuu = 2 * r * 3.141592 print("{:.6f} {:.6f}".format(menseki, shuu))
s459297889
p02400
u747709646
1510356700
Python
Python3
py
Runtime Error
0
0
87
line = input() r = int(line) import math print('%f %f' % (r*r*math.pi, 2*r*math.pi) )
s062755235
p02400
u747709646
1510356836
Python
Python3
py
Runtime Error
0
0
83
line = input() r = int(line) pi = 3.1415926535 print('%f %f' % (r*r*pi, 2*r*pi) )
s208004924
p02400
u899891332
1510471088
Python
Python3
py
Runtime Error
0
0
74
import math r=int(input()) print('{} {}'.format(r*r*math.pi, 2*r*math.pi))
s717113011
p02400
u102664642
1510752836
Python
Python3
py
Runtime Error
0
0
94
import math r = input() a = r ** 2 * math.pi c = r * 2 * math.pi print("5f" % (a),"5f" % (c))
s894875851
p02400
u102664642
1510752854
Python
Python3
py
Runtime Error
0
0
96
import math r = input() a = r ** 2 * math.pi c = r * 2 * math.pi print("%5f" % (a),"%5f" % (c))
s498092939
p02400
u102664642
1510752873
Python
Python3
py
Runtime Error
0
0
96
import math r = input() a = r ** 2 * math.pi c = r * 2 * math.pi print("%5f" % (a),"%5f" % (c))
s674605220
p02400
u102664642
1510752949
Python
Python3
py
Runtime Error
0
0
101
import math r = int(input()) a = r ** 2 * math.pi c = r * 2 * math.pi print("%5f" % (a),"%5f" % (c))
s458414913
p02400
u102664642
1510752989
Python
Python3
py
Runtime Error
0
0
101
import math r = int(input()) a = r ** 2 * math.pi c = r * 2 * math.pi print("%5f" % (a),"%5f" % (c))
s549101047
p02400
u298999032
1511094216
Python
Python3
py
Runtime Error
0
0
105
import math r=int(input()) print(str("{:.6f}".format(r*r*math.pi)+' '+str("{:.6f}".format(2*r*math.pi))))
s577451136
p02400
u298999032
1511094387
Python
Python3
py
Runtime Error
0
0
101
import math r=int(input()) x=r*math.pi print(str("{:.6f}".format(r*x)+' '+str("{:.6f}".format(2*x))))
s533371084
p02400
u298999032
1511094585
Python
Python3
py
Runtime Error
0
0
91
import math r=int(input()) x=r*math.pi print("{:.6f}".format(r*x)+' '+"{:.6f}".format(2*x))
s705287063
p02400
u298999032
1511094882
Python
Python3
py
Runtime Error
0
0
71
from math import pi r=int(input()) print("{} {}".format(r*r*pi,2*r*pi))
s608136655
p02400
u298999032
1511094914
Python
Python3
py
Runtime Error
0
0
71
from math import pi r=int(input()) print("{} {}".format(r*r*pi,2*r*pi))
s507484471
p02400
u298999032
1511154420
Python
Python3
py
Runtime Error
0
0
71
from math import pi r=int(input()) print("{} {}".format(r*r*pi,2*r*pi))
s698707330
p02400
u350064373
1511154932
Python
Python3
py
Runtime Error
0
0
55
from math import pi r=int(input()) print(r*r*pi,2*r*pi)
s010594306
p02400
u566872786
1511155030
Python
Python3
py
Runtime Error
0
0
71
from math import pi r=int(input()) print("{} {}".format(r*r*pi,2*r*pi))
s874301522
p02400
u298999032
1511155248
Python
Python3
py
Runtime Error
0
0
71
from math import pi r=int(input()) print("{} {}".format(r*r*pi,2*r*pi))
s090166695
p02400
u488038316
1511174325
Python
Python3
py
Runtime Error
0
0
225
# -*-coding:utf-8 import fileinput import math def main(): a = int(input()) PI = math.pi area = a * a * PI circum = 2 * a * PI print('%lf %lf' % (area, circum)) if __name__ == '__main__': main()
s889431608
p02400
u780025254
1511539094
Python
Python3
py
Runtime Error
0
0
127
import math r = int(input()) circle = r * 2 * math.pi area = (r ** 2) * math.pi print('{0:.5f} {1:.5f}'.format(area, circle))
s544111096
p02400
u102664642
1511697414
Python
Python3
py
Runtime Error
0
0
101
import math r = int(input()) a = r ** 2 * math.pi c = r * 2 * math.pi print("%5f" % (a),"%5f" % (c))
s671312831
p02400
u744506422
1511865712
Python
Python3
py
Runtime Error
0
0
76
import math r=int(input()) print("{0} {1}".format(r**2*math.pi,2*r*math.pi))
s040516613
p02400
u217069758
1512202427
Python
Python3
py
Runtime Error
0
0
95
import math r = int(input()) print('{0:.5f} {1:.5f}'.format(math.pi * (r**2), 2 * math.pi * r))
s562292768
p02400
u921038488
1512658074
Python
Python3
py
Runtime Error
0
0
141
import math PI = math.pi r = input() area = float(2 * PI + r) circumference = float(PI * r * r) print("{} {}".format(area, circumference))
s662553141
p02400
u369093003
1512800324
Python
Python3
py
Runtime Error
0
0
60
pi=3.1415926535897932384;r=int(input());print(pi*r*r,pi*r*2)
s498910344
p02400
u369093003
1512800352
Python
Python3
py
Runtime Error
0
0
52
pi=3.14159265358;r=int(input());print(pi*r*r,pi*r*2)
s044554668
p02400
u369093003
1512800386
Python
Python3
py
Runtime Error
0
0
51
pi=3.1415926535;r=int(input());print(pi*r*r,pi*r*2)
s941277658
p02400
u369093003
1512800454
Python
Python3
py
Runtime Error
0
0
50
pi=3.141592653 r=int(input()) print(pi*r*r,pi*r*2)
s095286874
p02400
u369093003
1512800601
Python
Python
py
Runtime Error
0
0
54
pi=3.141592653 r=int(row_input()) print(pi*r*r,pi*r*2)
s060151556
p02400
u539789745
1512825602
Python
Python3
py
Runtime Error
0
0
173
def main(): r = int(input()) pi = 3.141592653589 print("{:.5f}".format(2 * pi * r), "{:.5f}".format(pi * r * r)) if __name__ == "__main__": main()
s354087725
p02400
u150984829
1513066398
Python
Python3
py
Runtime Error
0
0
51
r=int(input()) p=3.14159 print(f'{pi*r*r} {2*p*r}')
s272457305
p02400
u150984829
1513066417
Python
Python3
py
Runtime Error
0
0
50
r=int(input()) p=3.14159 print(f'{p*r*r} {2*p*r}')
s747427212
p02400
u150984829
1513100280
Python
Python
py
Runtime Error
0
0
59
r=float(input()) p=3.141592653589 print(f'{p*r*r} {2*p*r}')
s854937661
p02400
u706217959
1513328461
Python
Python3
py
Runtime Error
0
0
197
import math def main(): n = int(input()) area = (n ** 2) * math.pi measure = (n * 2) *math.pi print("{0:.6f} {1:.6f}".format(area,measure)) if __name__ == "__main__": main()
s404158956
p02400
u706217959
1513328495
Python
Python3
py
Runtime Error
0
0
197
import math def main(): n = int(input()) area = (n ** 2) * math.pi measure = (n * 2) *math.pi print("{0:.6f} {1:.6f}".format(area,measure)) if __name__ == "__main__": main()
s716599520
p02400
u706217959
1513328530
Python
Python3
py
Runtime Error
0
0
196
import math def main(): n = int(input()) area = (n * n) * math.pi measure = (n * 2) *math.pi print("{0:.6f} {1:.6f}".format(area,measure)) if __name__ == "__main__": main()