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
s142230041
p02400
u580737984
1498028527
Python
Python3
py
Runtime Error
0
0
113
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print(area,end=' ') print(length)
s856757069
p02400
u580737984
1498028655
Python
Python3
py
Runtime Error
0
0
104
pi = 3.14159 r = int(input()) area = r * r * pi length = r * 2 * pi print(area,end=' ') print(length)
s528747113
p02400
u580737984
1498029478
Python
Python3
py
Runtime Error
0
0
142
pi = 3.14159265 r = int(input()) area = r * r * pi length = r * 2 * pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s284403455
p02400
u580737984
1498029673
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s898792921
p02400
u580737984
1498030276
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s111881584
p02400
u580737984
1498030442
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s799478342
p02400
u580737984
1498030996
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s232424948
p02400
u580737984
1498031769
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s210298540
p02400
u580737984
1498031888
Python
Python3
py
Runtime Error
0
0
112
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print(area,end=' ') print(length)
s892841509
p02400
u580737984
1498031930
Python
Python3
py
Runtime Error
0
0
143
import math r = int(input()) area = r * r * math.pi length = r * 2 * pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s301895570
p02400
u580737984
1498031947
Python
Python
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s825210505
p02400
u354053070
1498284851
Python
Python3
py
Runtime Error
0
0
107
from math import pi as p a = int(input()) s = round(p * (a ** 2), 11) l = round(2 * p * a, 11) print(s, l)
s704172194
p02400
u354053070
1498284884
Python
Python3
py
Runtime Error
0
0
114
from math import pi a = int(input()) s = round(math.pi * (a ** 2), 11) l = round(2 * math.pi * a, 11) print(s, l)
s506403739
p02400
u354053070
1498285076
Python
Python3
py
Runtime Error
0
0
104
from math import pi a = int(input()) s = round(pi * (a ** 2), 11) l = round(2 * pi * a, 11) print(s, l)
s178142877
p02400
u623827446
1498613638
Python
Python3
py
Runtime Error
0
0
99
import math r=int(input()) a=r*r*math.pi b=2*r*math.pi print('%.6f'%(a), end='') print(' %.6f'%(b))
s510485788
p02400
u623827446
1498614765
Python
Python3
py
Runtime Error
0
0
99
import math r=int(input()) a=r*r*math.pi b=2*r*math.pi print('%.6f'%(a), end='') print(' %.6f'%(b))
s401147570
p02400
u623827446
1498614913
Python
Python3
py
Runtime Error
0
0
80
import math r=int(input()) a=r*r*math.pi b=2*r*math.pi print(a, end='') print(b)
s447017930
p02400
u623827446
1498614962
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)
s566276817
p02400
u580737984
1498718038
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s265532930
p02400
u580737984
1498718262
Python
Python3
py
Runtime Error
0
0
148
import math r = int(input()) area = r * r * math.pi length = r * 2 * math.pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s600482658
p02400
u580737984
1498718328
Python
Python3
py
Runtime Error
0
0
146
from math import pi r = int(input()) area = r * r * pi length = r * 2 * pi print("{0:.6f}".format(area),end=' ') print("{0:.6f}".format(length))
s882322658
p02400
u569585396
1498719016
Python
Python3
py
Runtime Error
0
0
107
N = map(int, input().split()) area = (N * N * 3.14) len = (N * 2 * 3.14) print('{} {}'.format(area, len))
s088356445
p02400
u569585396
1498719077
Python
Python3
py
Runtime Error
0
0
109
N = map(int, input().split()) area = (N * N * ??) len = (N * 2 * ??) print('{0:f} {1:f}'.format(area, len))
s817782055
p02400
u569585396
1498719130
Python
Python3
py
Runtime Error
0
0
96
N = int(input()) area = (N * N * ??) len = (N * 2 * ??) print('{0:f} {1:f}'.format(area, len))
s613489092
p02400
u340500592
1498976507
Python
Python3
py
Runtime Error
0
0
112
import math r = float(input()) area = math.pi * r * r circumference = 2 * math.pi * r print(area, circumferene)
s525792093
p02400
u264972437
1499253268
Python
Python3
py
Runtime Error
0
0
79
import math r = int(input()) print('{0} {1}'.format(math.pi*r**2,2*math.pi*r))
s253319717
p02400
u264972437
1499253908
Python
Python3
py
Runtime Error
0
0
79
import math r = int(input()) print('{0} {1}'.format(math.pi*r**2,2*math.pi*r))
s414320486
p02400
u264972437
1499255862
Python
Python3
py
Runtime Error
0
0
81
import math r = int(input()) print('{0} {1}'.format(math.pi*(r**2),2*math.pi*r))
s564887064
p02400
u248424983
1499921638
Python
Python3
py
Runtime Error
0
0
94
import math a=int(input()) print(('%0.5f' % (math.pi*r**2)) + " " + ('%0.5f' % (2*math.pi*r)))
s956008793
p02400
u248424983
1499921664
Python
Python3
py
Runtime Error
0
0
94
import math r=int(input()) print(('%0.5f' % (math.pi*r**2)) + " " + ('%0.5f' % (2*math.pi*r)))
s064404918
p02400
u663910047
1500127107
Python
Python3
py
Runtime Error
0
0
48
r = int(input()) p = 3.141592 print(r*r*p,2*r*p)
s570817857
p02400
u663910047
1500127213
Python
Python3
py
Runtime Error
0
0
66
r = int(input()) p = 3.141592 print(round(r*r*p,6),round(2*r*p,6))
s315774392
p02400
u663910047
1500127238
Python
Python3
py
Runtime Error
0
0
66
r = int(input()) p = 3.141592 print(round(r*r*p,6),round(2*r*p,6))
s989054567
p02400
u914146430
1500271661
Python
Python3
py
Runtime Error
0
0
111
W,H,x,y,r=list(map(int,input().split())) if r<=x<=(W-r) and r<=y<=(H-r): print("Yes") else: print("No")
s771442865
p02400
u914146430
1500272087
Python
Python3
py
Runtime Error
0
0
93
import math r=int(input()) l=math.pi*r*2 s=(r**2)*math.pi print("{0:5f} {1:5f}".format(l, s))
s916163777
p02400
u914146430
1500272152
Python
Python3
py
Runtime Error
0
0
93
import math r=int(input()) l=math.pi*r*2 s=(r**2)*math.pi print("{0:6f} {1:6f}".format(l, s))
s589089933
p02400
u853619096
1500312376
Python
Python3
py
Runtime Error
0
0
96
import math r=int().input() c = r * r *math.pi cf = r *2 *math.pi print(f"}(c:0.5f) (cf:0.5f)})
s370688963
p02400
u853619096
1500312426
Python
Python3
py
Runtime Error
0
0
105
import math r=int().input() c = r * r *math.pi cf = r *2 *math.pi print("{0:.5f} {1:.5f}".format(c,cf))
s868467190
p02400
u853619096
1500312451
Python
Python3
py
Runtime Error
0
0
103
import math r=int().input() c = r * r *math.pi cf = r *2 *math.pi print("{0:.5f} {1:.5f}".format(c,cf))
s425303096
p02400
u853619096
1500312510
Python
Python3
py
Runtime Error
0
0
105
import math r=float().input() c = r * r *math.pi cf = r *2 *math.pi print("{0:.5f} {1:.5f}".format(c,cf))
s552335137
p02400
u350064373
1500470529
Python
Python3
py
Runtime Error
0
0
111
import math r = input() S = r * r * math.pi l = 2 * math.pi * r print("{0:.5f}".format(S),"{0:.5f}".format(l))
s795760162
p02400
u350064373
1500470643
Python
Python3
py
Runtime Error
0
0
93
import math r = input() S = r * r * math.pi l = 2 * math.pi * r print("{0:.5f}".format(S, l))
s955326257
p02400
u350064373
1500470971
Python
Python3
py
Runtime Error
0
0
100
import math r = int(input("")) S = r * r * math.pi l = 2 * math.pi * r print("{0:.5f}".format(S, l))
s202218446
p02400
u447009770
1500523790
Python
Python3
py
Runtime Error
0
0
101
### 20.07.2017 import math r = int(input()) print('%03.6f' % (2*r*math.pi), '%03.6f' % (r*r*math.pi))
s460163855
p02400
u447009770
1500523814
Python
Python3
py
Runtime Error
0
0
86
import math r = int(input()) print('%03.6f' % (2*r*math.pi), '%03.6f' % (r*r*math.pi))
s392818510
p02400
u888737393
1500699879
Python
Python3
py
Runtime Error
0
0
95
import math N = int(input()) S = round(N**2*math.pi, 6) R = round(2*math.pi*N, 6) print(S, R)
s883069947
p02400
u888737393
1500699905
Python
Python3
py
Runtime Error
0
0
96
import math N = int(input()) S = round(N**2*math.pi, 6) R = round(2*math.pi*N, 6) print(S, R)
s589561186
p02400
u888737393
1500700159
Python
Python3
py
Runtime Error
0
0
93
N = int(input()) pi = 3.141592653589 S = round(N**2*pi, 6) R = round(2*pi*N, 6) print(S, R)
s427131274
p02400
u888737393
1500700234
Python
Python3
py
Runtime Error
0
0
93
N = int(input()) pi = 3.141592653589 S = round(N**2*pi, 6) R = round(2*pi*N, 6) print(S, R)
s418353071
p02400
u888737393
1500700261
Python
Python3
py
Runtime Error
0
0
88
N = input() pi = 3.141592653589 S = round(N**2*pi, 6) R = round(2*pi*N, 6) print(S, R)
s839817232
p02400
u888737393
1500700387
Python
Python3
py
Runtime Error
0
0
72
N = int(input()) p = 3.141592653589 S = N**2*p R = 2*pi*N print(S, R)
s679166490
p02400
u888737393
1500700477
Python
Python3
py
Runtime Error
0
0
70
N = input() p = 3.141592653589 S = N**2*p R = 2*pi*N print(S, R)
s520025350
p02400
u888737393
1500711242
Python
Python3
py
Runtime Error
0
0
98
import math r = float(input()) s = round(r**2*math.pi, 6) v = round(2*math.pi*r, 6) print(s, V)
s449193065
p02400
u888737393
1500711336
Python
Python3
py
Runtime Error
0
0
78
import math r = float(input()) s = r**2*math.pi v = 2*math.pi*r print(s, V)
s612365092
p02400
u888737393
1500711550
Python
Python3
py
Runtime Error
0
0
103
import math r = float(input()) s = r**2*math.pi v = 2*math.pi*r print("{0:.6f} {1:.6f}'.format(s, V)
s758822639
p02400
u888737393
1500711571
Python
Python3
py
Runtime Error
0
0
104
import math r = float(input()) s = r**2*math.pi v = 2*math.pi*r print("{0:.6f} {1:.6f}'.format(s, V))
s588191887
p02400
u888737393
1500711608
Python
Python3
py
Runtime Error
0
0
104
import math r = float(input()) s = r**2*math.pi v = 2*math.pi*r print("{0:.6f} {1:.6f}".format(s, V))
s953807579
p02400
u043639882
1501118936
Python
Python3
py
Runtime Error
0
0
57
r=input() S=r**2*pi l=2*pi*r print("{0} {1}",format(S,l))
s413043845
p02400
u311299757
1501325196
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) pi = 3.141592653589793 print("{:.7f} {:.7f}".format(r**2*pi, r*2*pi))
s870565514
p02400
u311299757
1501325236
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) pi = 3.141592653589793 print("{:.7f} {:.7f}".format(r**2*pi, r*2*pi))
s854390774
p02400
u954858867
1501332523
Python
Python
py
Runtime Error
0
0
93
import math r = int(raw_input()) pai = 3.1415 print('%.5f %.5f' % (r*r*math.pi, 2*math.pi*r))
s597441806
p02400
u954858867
1501332570
Python
Python
py
Runtime Error
0
0
73
r = int(raw_input()) pai = 3.1415 print('%.5f %.5f' % (r*r*pai, 2*pai*r))
s150129902
p02400
u467070262
1501601980
Python
Python3
py
Runtime Error
0
0
72
r = int(input()) pi = 3.1415926535 print("%.5f %.5f" % (pi*r*r, 2*pi*r))
s941146066
p02400
u467070262
1501602094
Python
Python3
py
Runtime Error
0
0
72
r = int(input()) pi = 3.1415926535 print("%.8f %.8f" % (pi*r*r, 2*pi*r))
s979037052
p02400
u027634846
1501850518
Python
Python3
py
Runtime Error
0
0
118
import decimal r = int(input()) print('{:.6f}'.format( r * r * 3.1415926)) print('{:.6f}'.format((r + r) * 3.1415926))
s258380283
p02400
u725841747
1502035707
Python
Python3
py
Runtime Error
0
0
78
import math r = int(input()) print("{0} {1}".format(r**2*math.pi,2*math.pi*r))
s732084816
p02400
u821624310
1502082907
Python
Python3
py
Runtime Error
0
0
77
r = int(input()) area = r**2 * 3.14 enshuu = r * 2 * 3.14 print(area, enshuu)
s190537112
p02400
u925992597
1502152109
Python
Python3
py
Runtime Error
0
0
62
import math r = int(input()) print((r**2)*math.pi,r*2*math.pi)
s895401550
p02400
u597198969
1502345410
Python
Python3
py
Runtime Error
0
0
100
r = int(input()) p = 3.141592653589 a = r * r * p b = 2 * r * p print("{0:.6f} {1:.6f}".format(a,b))
s978085857
p02400
u853619096
1502518481
Python
Python3
py
Runtime Error
0
0
68
import math r = int(input()) s=r**2*math.pi l=2*r*math.pi print(s,l)
s271115976
p02400
u853619096
1502518530
Python
Python3
py
Runtime Error
0
0
82
import math r = int(input()) s=r**2*math.pi l=2*r*math.pi print(float(s),float(l))
s650765105
p02400
u853619096
1502518681
Python
Python3
py
Runtime Error
0
0
92
import math r = int(input()) s=r**2*math.pi l=2*r*math.pi print('{:.5f} {:.5f}'.format(s,l))
s735864016
p02400
u853619096
1502518729
Python
Python3
py
Runtime Error
0
0
92
import math r = int(input()) s=r**2*math.pi l=2*r*math.pi print('{:.6f} {:.6f}'.format(s,l))
s557901000
p02400
u029473859
1502761205
Python
Python3
py
Runtime Error
0
0
60
r = int(input()) import math print(math.pi*r**2,2*math.pi*r)
s589800309
p02400
u029473859
1502761264
Python
Python3
py
Runtime Error
0
0
90
r = int(input()) import math print("{:f}".format(math.pi*r**2),"{:f}".format(2*math.pi*r))
s114638431
p02400
u029473859
1502761372
Python
Python3
py
Runtime Error
0
0
87
r = int(input()) pi = 3.14159265359 print("{:f}".format(pi*r**2),"{:f}".format(2*pi*r))
s271794487
p02400
u957021183
1502947866
Python
Python3
py
Runtime Error
0
0
243
# Aizu Problem ITP_1_4_B: Circle # import sys, math, os # read input: PYDEV = os.environ.get('PYDEV') if PYDEV=="True": sys.stdin = open("sample-input.txt", "rt") pi = math.pi r = int(input()) print("%.6f %.6f" % (pi * r**2, 2 * pi * r))
s292714527
p02400
u283452598
1503045381
Python
Python3
py
Runtime Error
0
0
81
import math r=int(input()) print("{0:8f} {1:8f}".format(math.pi*r*r,r*2*math.pi))
s277657535
p02400
u283452598
1503045469
Python
Python3
py
Runtime Error
0
0
81
import math r=int(input()) print("{0:8f} {1:8f}".format(math.pi*r*r,r*2*math.pi))
s049444004
p02400
u316697096
1503149948
Python
Python
py
Runtime Error
0
0
85
r= map(int,raw_input().split()) s=float(r)*r*pi l=float(r)*2*pi print "%f %f" %(s,l)
s456855812
p02400
u316697096
1503149977
Python
Python
py
Runtime Error
0
0
93
r= map(int,raw_input().split()) pi=3.14 s=float(r)*r*pi l=float(r)*2*pi print "%f %f" %(s,l)
s934853070
p02400
u450020188
1503631774
Python
Python3
py
Runtime Error
0
0
73
x = int(input()) a = 3.14*x*x b = 3.14*(x+x) print("%.6f" %a, "%.6f" %b)
s637391276
p02400
u450020188
1503632020
Python
Python3
py
Runtime Error
0
0
92
import math x = int(input()) a = math.pi*x*x b = math.pi*(x+x) print("%.6f" %a, "%.6f" %b)
s807204618
p02400
u450020188
1503632132
Python
Python3
py
Runtime Error
0
0
96
import math pi = math.pi x = int(input()) a = pi*x*x b = pi*(x+x) print("%.6f" %a, "%.6f" %b)
s691535693
p02400
u450020188
1503632328
Python
Python3
py
Runtime Error
0
0
108
import math pi = math.pi x = int(input()) a = pi*x*x b = pi*(x+x) print("{0:0.6f} {1:0.6f}".format(a, b))
s332705823
p02400
u096862087
1503678248
Python
Python3
py
Runtime Error
0
0
99
r = int(input()) pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
s175095619
p02400
u096862087
1503678275
Python
Python3
py
Runtime Error
0
0
99
r = int(input()) pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
s548736307
p02400
u096862087
1503678404
Python
Python3
py
Runtime Error
0
0
99
r = (int)input() pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
s584490370
p02400
u096862087
1503678431
Python
Python3
py
Runtime Error
0
0
99
r = (int)input() pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
s026883352
p02400
u096862087
1503678518
Python
Python3
py
Runtime Error
0
0
99
r = int(input()) pi = 3.14159265358979 l = 2 * pi * r s = pi * r**2 print("{0} {1}".format(s, l))
s940969015
p02400
u727538672
1504171715
Python
Python3
py
Runtime Error
0
0
75
import math print("{0:f} {1:f}".format(r ** 2 * math.pi, r * 2 * math.pi))
s609131240
p02400
u727538672
1504171813
Python
Python3
py
Runtime Error
0
0
74
import math r == float(input()) print(r ** 2 * math.pi, r * 2 * math.pi))
s463788604
p02400
u727538672
1504171873
Python
Python3
py
Runtime Error
0
0
73
import math r == float(input()) print(r ** 2 * math.pi, r * 2 * math.pi)
s299122170
p02400
u666221014
1504520329
Python
Python3
py
Runtime Error
0
0
86
r = int(input()) pi = 3.14159265 print("{:.6f} {:.6f}".format(pi * r * r, 2 * pi * r))
s840710661
p02400
u956226421
1504592703
Python
Python3
py
Runtime Error
0
0
143
import math pi = math.pi r = int(input()) S = r ** 2 * pi syu = 2 * pi * r print(str("{0:.6f}".format(S)) + ' ' + str("{0:.6f}".format(syu)))
s353394000
p02400
u956226421
1504592790
Python
Python3
py
Runtime Error
0
0
127
pi = 3.14 r = int(input()) S = r ** 2 * pi syu = 2 * pi * r print(str("{0:.6f}".format(S)) + ' ' + str("{0:.6f}".format(syu)))
s758266066
p02400
u343251190
1504862503
Python
Python3
py
Runtime Error
0
0
79
import math r = int(input()) print("%f %f" % (math.pi * r**2, math.pi * r * 2))
s886992136
p02400
u343251190
1504862664
Python
Python3
py
Runtime Error
0
0
115
import math r = int(input()) if r == 0: print(0,0) else: print("%f %f" % (math.pi * r**2, math.pi * r * 2))
s504176828
p02400
u343251190
1504862740
Python
Python3
py
Runtime Error
0
0
128
import math r = int(input()) if r == 0: print('%f %f' % (0, 0)) else: print("%f %f" % (math.pi * r**2, math.pi * r * 2))
s006406031
p02400
u933096856
1505005020
Python
Python3
py
Runtime Error
0
0
59
import math r=int(input()) print(math.pi*r**2, math.pi*2*r)