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
s420263474
p02389
u854556813
1551618974
Python
Python
py
Runtime Error
0
0
66
l=input().split() a=int(l[0]) b=int(l[1]) print(a*b);print(2a+2b)
s107855912
p02389
u854556813
1551619014
Python
Python
py
Runtime Error
0
0
68
l=input().split() a=int(l[0]) b=int(l[1]) print(a*b);print(2*a+2*b)
s440814320
p02389
u854556813
1551619824
Python
Python
py
Runtime Error
0
0
61
l=input().split() a=int(l[0]) b=int(l[1]) print(a*b,2*a+2*b)
s938804692
p02389
u854556813
1551619955
Python
Python
py
Runtime Error
0
0
67
l = input().split() a = int(l[0]) b = int(l[1]) print(a*b,2*a+2*b)
s414211343
p02389
u854556813
1551620256
Python
Python
py
Runtime Error
0
0
71
l=input().split() a=int(l[0]) b=int(l[1]) print(str(a*b),str(2*a+2*b))
s725359243
p02389
u854556813
1551620269
Python
Python
py
Runtime Error
0
0
63
l=input() a=int(l[0]) b=int(l[1]) print(str(a*b),str(2*a+2*b))
s774137848
p02389
u854556813
1551620441
Python
Python
py
Runtime Error
0
0
76
l=input().split() a=int(l[0]) b=int(l[1]) print('{} {}'.format(a*b,2*a+2*b)
s420294665
p02389
u854556813
1551620455
Python
Python
py
Runtime Error
0
0
77
l=input().split() a=int(l[0]) b=int(l[1]) print('{} {}'.format(a*b,2*a+2*b))
s489340100
p02389
u854556813
1551620477
Python
Python
py
Runtime Error
0
0
80
l=input().split(' ') a=int(l[0]) b=int(l[1]) print('{} {}'.format(a*b,2*a+2*b))
s139689651
p02389
u854556813
1551620519
Python
Python
py
Runtime Error
0
0
84
l=input().split(' '); a=int(l[0]); b=int(l[1]); print('{} {}'.format(a*b,2*a+2*b));
s222142051
p02389
u854556813
1551620586
Python
Python
py
Runtime Error
0
0
82
l=input().split(' ') a=int(l[0]) b=int(l[1]) print('{d} {d}'.format(a*b,2*a+2*b))
s556273676
p02389
u854556813
1551620595
Python
Python
py
Runtime Error
0
0
84
l=input().split(' ') a=int(l[0]) b=int(l[1]) print('{%d} {%d}'.format(a*b,2*a+2*b))
s388019394
p02389
u854556813
1551620739
Python
Python
py
Runtime Error
0
0
74
l=input().split(' ') a=int(l[0]) b=int(l[1]) s=a*b s1=2*(a+b) print(s,s1)
s682188461
p02389
u854556813
1551620761
Python
Python
py
Runtime Error
0
0
71
l=input().split() a=int(l[0]) b=int(l[1]) s=a*b s1=2*(a+b) print(s,s1)
s351688679
p02389
u904261809
1555660794
Python
Python
py
Runtime Error
0
0
80
a, b = map(int, input().split()) s = a * b l = a * 2 + b * 2 print(s + " " + l)
s838982940
p02389
u904261809
1555661088
Python
Python3
py
Runtime Error
0
0
80
a, b = map(int, input().split()) s = a * b l = a * 2 + b * 2 print(s + " " + l)
s743977602
p02389
u482227082
1555672658
Python
Python3
py
Runtime Error
0
0
63
a, b = input().split() print (int(a)*int(b) 2*(int(a)+int(b)))
s182307425
p02389
u482227082
1555672713
Python
Python3
py
Runtime Error
0
0
64
a,b = input().split() print ( int(a)*int(b) 2*(int(a)+int(b)) )
s292404723
p02389
u870970010
1555689964
Python
Python
py
Runtime Error
0
0
94
ab=input() print(ab.split(' ')[0]*ab.split(' ')[1]+" "+(ab.split(' ')[0]+ab.split(' ')[1])*2)
s697505835
p02389
u870970010
1555690245
Python
Python
py
Runtime Error
0
0
90
ab=input() a=int(ab.split(' ')[0]) b=int(ab.split(' ')[1]) s=a*b l=(a+b)*2 print(s+" "+l)
s075456436
p02389
u870970010
1555690305
Python
Python3
py
Runtime Error
0
0
90
ab=input() a=int(ab.split(' ')[0]) b=int(ab.split(' ')[1]) s=a*b l=(a+b)*2 print(s+" "+l)
s742017289
p02389
u870970010
1555690492
Python
Python
py
Runtime Error
0
0
82
ab=input() a=split()[0] b=split()[1] s=a*b l=(a+b)*2 print("{0} {1}".format(s,l))
s265658796
p02389
u870970010
1555693106
Python
Python3
py
Runtime Error
0
0
80
ab=input() a=ab.split()[0] b=ab.split()[1] print("{0} {1}".format(a*b,(a+b)*2))
s943959595
p02389
u870970010
1555693125
Python
Python3
py
Runtime Error
0
0
82
ab=input() a=ab.split()[0] b=ab.split()[1] print("{0} {1}".format(a*b,((a+b)*2)))
s571278911
p02389
u870970010
1555693140
Python
Python3
py
Runtime Error
0
0
90
ab=input() a=ab.split()[0] b=ab.split()[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
s960159362
p02389
u870970010
1555693162
Python
Python3
py
Runtime Error
0
0
96
ab=input() a=ab.split(" ")[0] b=ab.split(" ")[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
s500017899
p02389
u870970010
1555693167
Python
Python3
py
Runtime Error
0
0
96
ab=input() a=ab.split(" ")[0] b=ab.split(" ")[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
s422479323
p02389
u870970010
1555693171
Python
Python3
py
Runtime Error
0
0
96
ab=input() a=ab.split(" ")[0] b=ab.split(" ")[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
s546299386
p02389
u870970010
1555693221
Python
Python3
py
Runtime Error
0
0
96
ab=input() a=ab.split(' ')[0] b=ab.split(' ')[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
s643079602
p02389
u870970010
1555693266
Python
Python3
py
Runtime Error
0
0
94
ab=input() a=ab.split(' ')[0] b=ab.split(' ')[1] s=a*b l=(a+b)*2 print("{0} {1}".format(s,l))
s060164142
p02389
u118601639
1555834484
Python
Python3
py
Runtime Error
0
0
49
A,B=map(int(input().split())) print(A*B,(A+B)*2)
s887229899
p02389
u651717882
1555870718
Python
Python3
py
Runtime Error
0
0
59
a = float(input()) b =float(input()) print(a+b) print(a*b)
s990187892
p02389
u651717882
1555870743
Python
Python3
py
Runtime Error
0
0
53
a = float(input()) b =float(input()) print(a+b,a*b)
s697691911
p02389
u651717882
1555870830
Python
Python3
py
Runtime Error
0
0
54
a = float(input()) b =float(input()) print(a+b,a*b)
s800141642
p02389
u651717882
1555870853
Python
Python3
py
Runtime Error
0
0
50
a = int(input()) b =int(input()) print(a+b,a*b)
s459716633
p02389
u651717882
1555871037
Python
Python3
py
Runtime Error
0
0
55
a = float(input()) b = float(input()) print(a+b*2,a*b)
s483705634
p02389
u651717882
1555871065
Python
Python3
py
Runtime Error
0
0
55
a = float(input()) b = float(input()) print(2*a+b,a*b)
s835679159
p02389
u651717882
1555871080
Python
Python3
py
Runtime Error
0
0
51
a = int(input()) b = int(input()) print(2*a+b,a*b)
s019923509
p02389
u651717882
1555871098
Python
Python3
py
Runtime Error
0
0
17
print(2*a+b,a*b)
s144346574
p02389
u651717882
1555871191
Python
Python3
py
Runtime Error
0
0
51
a = int(input()) b = int(input()) print(2*a+b,a*b)
s121961826
p02389
u651717882
1555871971
Python
Python3
py
Runtime Error
0
0
50
a,b = map(int,input(),sprit()) print(a*b,2*(a+b))
s938838058
p02389
u651717882
1555871993
Python
Python3
py
Runtime Error
0
0
50
a,b = map(int,input(),split()) print(a*b,2*(a+b))
s260189301
p02389
u651717882
1555872552
Python
Python3
py
Runtime Error
0
0
52
a,b = map(int(),input().split()) print(a*b,2*(a+b))
s916937624
p02389
u525395303
1555909153
Python
Python3
py
Runtime Error
0
0
113
for ( int i = 0; i < 4; i++ ){ for ( int j = 0; j < 8; j++ ){ cout << "#"; } cout << endl; }
s093529882
p02389
u800408401
1555909239
Python
Python3
py
Runtime Error
0
0
68
a=input() b=input() s=int(a)*int(b) t=int(a)*2+int(b)*2 print(s, t)
s654676654
p02389
u800408401
1555909246
Python
Python3
py
Runtime Error
0
0
68
a=input() b=input() s=int(a)*int(b) t=int(a)*2+int(b)*2 print(s, t)
s378161274
p02389
u800408401
1555909319
Python
Python3
py
Runtime Error
0
0
72
a=input() b=input() s=int(a)*int(b) t=(int(a)*2)+(int(b)*2) print(s, t)
s387188464
p02389
u800408401
1555909347
Python
Python3
py
Runtime Error
0
0
68
a=input() b=input() s=int(a)*int(b) t=(int(a)+int(b))*2 print(s, t)
s029631799
p02389
u654661069
1555909535
Python
Python3
py
Runtime Error
0
0
93
x = raw_input().split() y = map(int,x) a = y[0] b = y[1] c = a*b d = (a+b)*2 print c, d
s341585953
p02389
u525395303
1555909600
Python
Python3
py
Runtime Error
0
0
108
#coding: UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] c = a*b d = (a+b)*2 print c, d
s334150238
p02389
u607723579
1555910022
Python
Python3
py
Runtime Error
0
0
59
a, b=map(int, input().split()) print(r, l) r=a*b l=2*(a+b)
s434399165
p02389
u607723579
1555910039
Python
Python3
py
Runtime Error
0
0
59
a, b=map(int, input().split()) print(r, l) r=a*b l=2*(a+b)
s419552884
p02389
u607723579
1555910069
Python
Python3
py
Runtime Error
0
0
59
a, b=map(int, input().split()) print(r, l) r=a*b l=2*(a+b)
s089105509
p02389
u654661069
1555910079
Python
Python
py
Runtime Error
0
0
70
a, b= map(int, input().split()) c = (a*b) d = (a+b)*2 print( c, d)
s073928170
p02389
u525395303
1555910127
Python
Python3
py
Runtime Error
0
0
3
hj
s323883896
p02389
u586792237
1555910139
Python
Python3
py
Runtime Error
0
0
66
x, y = map(int, input().split()) x = (a+b)*2 y = a*b print(y, x)
s876659036
p02389
u586792237
1555910156
Python
Python3
py
Runtime Error
0
0
66
x, y = map(int, input().split()) x = (a+b)*2 y = a*b print(y, x)
s597086787
p02389
u495152850
1555910202
Python
Python3
py
Runtime Error
0
0
73
a, b = map(int, input().split()) print(x, y) x = a * b y = a + a + b + b
s917571068
p02389
u586792237
1555910239
Python
Python3
py
Runtime Error
0
0
66
x, y = map(int, input().split()) x = a*b y = (a+b)*2 print(x, y)
s450586896
p02389
u586792237
1555910279
Python
Python3
py
Runtime Error
0
0
66
x, y = map(int, input().split()) x = a*b y = (a+b)*2 print(x, y)
s995185103
p02389
u804558166
1555910834
Python
Python3
py
Runtime Error
0
0
82
x=int(input()) print(x/3600, ':', (x-x/3600)/60, ':', x-{(x-x/3600)/60}, sep='')
s752966852
p02389
u804558166
1555910921
Python
Python3
py
Runtime Error
0
0
88
x=int(input()) print(x//3600, ':', (x-x//3600)//60, ':', x-{(x-x//3600)//60}, sep='')
s625832417
p02389
u227363693
1555912717
Python
Python3
py
Runtime Error
0
0
78
a = input() b = input() a = int(a) b = int(b) print(a*b, " ", (2*a)+(2*b))
s105971401
p02389
u227363693
1555912741
Python
Python3
py
Runtime Error
0
0
78
a = input() b = input() a = int(a) b = int(b) print(a*b, " ", (2*a)+(2*b))
s031034316
p02389
u322138661
1555915504
Python
Python3
py
Runtime Error
0
0
88
a=int(input()) b=int(input()) area=a*b lap_length=2*a+2*b print(area) print(lap_length)
s082269926
p02389
u322138661
1555915730
Python
Python3
py
Runtime Error
0
0
82
a=int(input()) b=int(input()) area=a*b lap_length=2*a+2*b print(area,lap_length)
s890388577
p02389
u349668666
1556009201
Python
Python3
py
Runtime Error
0
0
57
n=int(input().split()) a=n[0] b=n[1] S=a*b L=(2*a)+(2*b)
s073598086
p02389
u349668666
1556009234
Python
Python3
py
Runtime Error
0
0
70
n=int(input().split()) a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
s083980895
p02389
u349668666
1556009517
Python
Python3
py
Runtime Error
0
0
63
n,n1=input().split() a=n b=n1 S=a*b L=(2*a)+(2*b) print(S' 'L)
s640843013
p02389
u349668666
1556010214
Python
Python3
py
Runtime Error
0
0
65
n=input().split() a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
s983815510
p02389
u349668666
1556010391
Python
Python3
py
Runtime Error
0
0
65
n=input().split() a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
s909000267
p02389
u349668666
1556010504
Python
Python3
py
Runtime Error
0
0
69
n=input() s=n.split() a=s[0] b=s[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
s269101870
p02389
u349668666
1556010529
Python
Python3
py
Runtime Error
0
0
74
n=input() s=int(n.split()) a=s[0] b=s[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
s069005780
p02389
u349668666
1556010889
Python
Python3
py
Runtime Error
0
0
78
n=map(int,raw_input().split()) a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
s730009272
p02389
u349668666
1556010924
Python
Python3
py
Runtime Error
0
0
78
n=map(int,raw_input().split()) a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S" "L)
s292852229
p02389
u349668666
1556011073
Python
Python3
py
Runtime Error
0
0
94
n=map(int,raw_input().split()) a=n[0] b=n[1] S=[a*b,(2*a)+(2*b)] print(' '.join(map(str, S)))
s713771296
p02389
u349668666
1556011157
Python
Python3
py
Runtime Error
0
0
86
n=map(int,raw_input().split()) a=n[0] b=n[1] print(a*b) print(' ') print((2*a)+(2*b))
s475681718
p02389
u349668666
1556011599
Python
Python3
py
Runtime Error
0
0
109
#cording; UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] S = a*b L = 2*(a+b) print(S' 'L)
s013840169
p02389
u349668666
1556011617
Python
Python3
py
Runtime Error
0
0
107
#cording; UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] S = a*b L = 2*(a+b) print S, L
s558550694
p02389
u349668666
1556011657
Python
Python3
py
Runtime Error
0
0
109
#cording; UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] s = a*b l = 2*(a+b) print( s, l)
s475302788
p02389
u349668666
1556011669
Python
Python3
py
Runtime Error
0
0
108
#cording; UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] s = a*b l = 2*(a+b) print(s, l)
s326397564
p02389
u349668666
1556011870
Python
Python3
py
Runtime Error
0
0
87
#cording; UTF-8 a,b=[int(x) for x in input().split()] S = a*b L = 2*(a+b) print(s, l)
s779097304
p02389
u883436882
1556071501
Python
Python
py
Runtime Error
0
0
347
width = float(input('Please Enter the Width of a Rectangle: ')) height = float(input('Please Enter the Height of a Rectangle: ')) # calculate the area of rectangle Area = width * height # calculate the Perimeter Perimeter = 2 * (width + height) print("\n Area of a Rectangle is: %.2f" %Area) print(" Perimeter of Rectangle is: %.2f" %Perimeter)
s623809581
p02389
u317990399
1556072150
Python
Python3
py
Runtime Error
0
0
145
def rect(a,b): return a*b, 2*(a+b) s = input() x = s.split() a = int(x[0]) b = int(x[1]) area,perimeter = rect(a,b) print(area, perimater)
s608385624
p02389
u418789927
1556105269
Python
Python3
py
Runtime Error
0
0
48
a=int(input()) b=int(input()) print(a*b,2a+2b)
s435715827
p02389
u136295375
1556111278
Python
Python3
py
Runtime Error
0
0
55
a=int(input()) b=int(input()) print(a*b +' '+ 2(a+b))
s878282463
p02389
u543618856
1556161580
Python
Python3
py
Runtime Error
0
0
74
s = input() x = s.split() a = int(x[0]) b = int(x[1]) print(a*b,2*(a+b)
s497747502
p02389
u543618856
1556161591
Python
Python3
py
Runtime Error
0
0
74
s = input() x = s.split() a = int(x[0]) b = int(x[1]) print(a*b,2*(a+b)
s840416190
p02389
u976156562
1556161740
Python
Python3
py
Runtime Error
0
0
112
# problem 1=C Rectangle s = input() x = s.split() a = int(x[0]) b = int(x[1]) print (a*b,2*(a+b))
s670023520
p02389
u976156562
1556161793
Python
Python3
py
Runtime Error
0
0
112
# problem 1=C Rectangle s = input() x = s.split() a = int(x[0]) b = int(x[1]) print (a*b,2*(a+b))
s964986977
p02389
u976156562
1556162063
Python
Python3
py
Runtime Error
0
0
103
# problem 1=C Rectangle s = input() x = s.split() a = int(x[0]) b = int(x[1]) print (a*b,2*(a+b)
s618587087
p02389
u327386274
1556359792
Python
Python3
py
Runtime Error
0
0
40
a,b = int(input()) print(a*b , 2*(a+b))
s331541413
p02389
u327386274
1556359814
Python
Python3
py
Runtime Error
0
0
45
a,b = int(input()) print(a*b) print(2*(a+b))
s922590154
p02389
u327386274
1556359978
Python
Python3
py
Runtime Error
0
0
54
a,b = map(int,input().split()) print(a*b+' '+2*(a+b))
s917810390
p02389
u085967287
1556430533
Python
Python
py
Runtime Error
0
0
30
x=input() y=input() print x*y
s858282912
p02389
u630518143
1556501318
Python
Python3
py
Runtime Error
0
0
104
nums = input().split() x = nums[0] * nums[1] y = nums[0] * 2 + nums[1] * 2 print(str(x) + " " + str(y))
s325145355
p02389
u610816226
1556622955
Python
Python3
py
Runtime Error
0
0
67
n = input() a, b = n.split() x = a * b y = 2 * (a + b) print(x, y)
s485129018
p02389
u610816226
1556622976
Python
Python3
py
Runtime Error
0
0
72
n = input() a, b = int(n.split()) x = a * b y = 2 * (a + b) print(x, y)
s265660390
p02389
u340991036
1558938193
Python
Python3
py
Runtime Error
0
0
61
a, b = map(int, input.split()) print(a * b, a * 2 + b * 2)
s134648460
p02389
u967890409
1559005751
Python
Python3
py
Runtime Error
0
0
86
import sys data=int(input()) data2=int(input()) print((data*data2), 2*(data+data2))