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
s000382945
p02389
u559049040
1499173030
Python
Python3
py
Runtime Error
0
0
84
val = input() sp = val.split() print('{} {}'.format(sp[0]*sp[1], sp[0]*2+sp[1]*2))
s541104163
p02389
u559049040
1499173111
Python
Python3
py
Runtime Error
0
0
131
val = input() sp = val.split() tate = int(sp[0]) yoko = int(sp[1]) print('{} {}'.format(str(sp[0]*sp[1]), str(sp[0]*2+sp[1]*2)))
s530851568
p02389
u350064373
1499232653
Python
Python3
py
Runtime Error
0
0
128
import re t = re.search(r"(\d{1,3})\s(\d{1,3})", input("")) a = t.group(1) b = t.group(2) x = a * b y = a*2 + b*2 print(x,y)
s203165151
p02389
u553951959
1499485483
Python
Python3
py
Runtime Error
0
0
129
a = input("input a: ") a = int(a) b = input("input b: ") b = int(b) print( a, b ) area = a*b line = 2*a + 2*b print( area, line )
s702376161
p02389
u553951959
1499485949
Python
Python3
py
Runtime Error
0
0
117
a = input("input a: ") a = int (a) b = input("input b: ") b = int (b) area = a*b line = 2*a + 2*b print( area, line )
s258338618
p02389
u553951959
1499486362
Python
Python3
py
Runtime Error
0
0
81
a = int(input()) b = int(input()) area = a*b line = 2*a + 2*b print( area, line )
s310727429
p02389
u553951959
1499486538
Python
Python3
py
Runtime Error
0
0
78
a = int(input()) b = int(input()) area = a*b line = 2*a + 2*b print(area,line)
s127500726
p02389
u553951959
1499488052
Python
Python3
py
Runtime Error
0
0
79
a, b = map(int, input().split()) area = a*b line = 2*(a+b) ptint ( area, line )
s811093618
p02389
u184989919
1499497885
Python
Python3
py
Runtime Error
0
0
50
w = int(input()) h = int(input()) print((w+h)*2)
s315055233
p02389
u184989919
1499498217
Python
Python3
py
Runtime Error
0
0
101
numbers = list(map(int,input().split())) print((numbers[0]*numbers[1])+" "+(numbers[0]+numbers[1])*2)
s448639483
p02389
u311299757
1499693407
Python
Python3
py
Runtime Error
0
0
38
a, b = input.split() print(a) print(b)
s682497656
p02389
u311299757
1499693472
Python
Python3
py
Runtime Error
0
0
30
print(input) print(a) print(b)
s160233929
p02389
u311299757
1499694609
Python
Python3
py
Runtime Error
0
0
77
[a,b]=input.split() a = int(a) b = int(b) print("{} {}".format(a*b, 2*a+2*b))
s040058633
p02389
u311299757
1499694686
Python
Python3
py
Runtime Error
0
0
119
def temp(val): [a,b]=val.split() a = int(a) b = int(b) print("{} {}".format(a*b, 2*a+2*b)) temp(input)
s274899689
p02389
u043639882
1499726425
Python
Python3
py
Runtime Error
0
0
47
a=int(input()) b=int(input()) print(a*b,2(a+b))
s241338774
p02389
u043639882
1499726546
Python
Python3
py
Runtime Error
0
0
63
a=int(input()) b=int(input()) result=(a*b,2(a+b)) print(result)
s606801505
p02389
u043639882
1499726863
Python
Python3
py
Runtime Error
0
0
64
a=int(input()) b=int(input()) result=(a*b,2*(a+b)) print(result)
s236876545
p02389
u043639882
1499726980
Python
Python3
py
Runtime Error
0
0
64
a=int(input()) b=int(input()) result=[a*b,a*(a+b)] print(result)
s918421966
p02389
u498511622
1500082062
Python
Python3
py
Runtime Error
0
0
55
a=int(input()) b=int(input()) print(a*b) print(2*(a+b))
s393786722
p02389
u663910047
1500100717
Python
Python3
py
Runtime Error
0
0
49
a,b= map(int, input(),split()) print(a*b,2*(a+b))
s386762132
p02389
u663910047
1500100769
Python
Python3
py
Runtime Error
0
0
49
a,b= map(int, input(),split()) print(a*b,2*(a+b))
s888178260
p02389
u447009770
1500177726
Python
Python3
py
Runtime Error
0
0
65
l = map(int, raw_input().split()) print(l[0]*l[1], (l[0]+l[1])*2)
s660639431
p02389
u350064373
1500294784
Python
Python3
py
Runtime Error
0
0
100
x = input("") x2 = x.split() result = x2[0] * x2[1] result2= x2[0]*2 + x2[1]*2 print(result,result2)
s368439727
p02389
u853619096
1500363291
Python
Python
py
Runtime Error
0
0
49
a,b=int(input()).split() print(a*b+" "+(a*2+b*2))
s122361181
p02389
u853619096
1500363425
Python
Python3
py
Runtime Error
0
0
49
a,b=int(input()).split() print(a*b+" "+(a*2+b*2))
s687235638
p02389
u138422838
1500806524
Python
Python
py
Runtime Error
0
0
52
a,b = input().split() S = a*b L = 2*(a+b) print(S L)
s413136797
p02389
u138422838
1500806622
Python
Python
py
Runtime Error
0
0
57
a,b = int(input().split()) S = a*b L = 2*(a+b) print(S L)
s725605031
p02389
u138422838
1500806945
Python
Python
py
Runtime Error
0
0
57
a,b = input(int()).split() S = a*b L = 2*(a+b) print(S L)
s959765234
p02389
u138422838
1500806966
Python
Python
py
Runtime Error
0
0
62
a,b = input().split() S = int(a)*int(b) L = 2*(a+b) print(S L)
s432243299
p02389
u138422838
1500806980
Python
Python
py
Runtime Error
0
0
72
a,b = input().split() S = int(a)*int(b) L = 2*(int(a)+int(b)) print(S L)
s533756394
p02389
u138422838
1500806994
Python
Python
py
Runtime Error
0
0
82
a,b = input().split() S = int(a)*int(b) L = 2*(int(a)+int(b)) print(int(S) int(L))
s932197761
p02389
u138422838
1500807004
Python
Python3
py
Runtime Error
0
0
82
a,b = input().split() S = int(a)*int(b) L = 2*(int(a)+int(b)) print(int(S) int(L))
s699308373
p02389
u138422838
1500807340
Python
Python3
py
Runtime Error
0
0
57
a,b = int(input().split()) S = a*b L = 2*(a+b) print(S,L)
s795296144
p02389
u138422838
1500807375
Python
Python3
py
Runtime Error
0
0
67
a,b = int(input().split()) S = int(a*b) L = int(2*(a+b)) print(S,L)
s232313940
p02389
u791170614
1501142789
Python
Python3
py
Runtime Error
0
0
172
a, b = map(int, input().split()) def SquareArea(a, b): return str(a * b) def SideLength(a, b): return str((a + b)*2) print(SquareArea(a, b)???+ " " + SideLength(a, b))
s904122292
p02389
u393619373
1501247680
Python
Python3
py
Runtime Error
0
0
141
def Area(a, b): return a*b def Lap(a, b): return 2*(a+b) num = input() a,b = num.split() print('{} {}'.format(Area(a,b), Lap(a,b)))
s868107545
p02389
u393619373
1501247745
Python
Python3
py
Runtime Error
0
0
146
def Area(a, b): return a*b def Lap(a, b): return 2*(a+b) num = input() a,b = int(num.split()) print('{} {}'.format(Area(a,b), Lap(a,b)))
s059186743
p02389
u589574479
1501331884
Python
Python3
py
Runtime Error
0
0
68
a = int(input()) b = int(input()) print(a*b,end=" ") print(a*2+b*2)
s663270733
p02389
u997714038
1501476393
Python
Python3
py
Runtime Error
0
0
45
a,b = map(input().split()) print(a*b,2*a+2*b)
s865488461
p02389
u467070262
1501597933
Python
Python3
py
Runtime Error
0
0
72
x = int(input()) y = int(input()) print(str(x*y) + " " + str(2*x + 2*y))
s623283471
p02389
u467070262
1501597963
Python
Python3
py
Runtime Error
0
0
90
x = int(input().rstrip()) y = int(input().rstrip()) print(str(x*y) + " " + str(2*x + 2*y))
s370560062
p02389
u467070262
1501598150
Python
Python3
py
Runtime Error
0
0
106
line = input().rstrip().split(" ") x = int(line[0]) y = int(line[1]) print(str(x*y) + " " + str(2*x + 2*y)
s079588585
p02389
u957028788
1501909986
Python
Python
py
Runtime Error
0
0
35
a,b = raw_input.split.map print a*b
s689748370
p02389
u744121389
1502351878
Python
Python3
py
Runtime Error
0
0
30
print(a * b (a * 2) + (b * 2))
s431451018
p02389
u744121389
1502587892
Python
Python3
py
Runtime Error
0
0
74
a,b = map(int, input().split()) c = a * b d = (a + b) *2 print(str(c,d))
s724869281
p02389
u744121389
1502587954
Python
Python3
py
Runtime Error
0
0
74
a,b = map(int, input().split()) c = a * b d = (a + b) *2 print(str(c,d))
s298982938
p02389
u744121389
1502588041
Python
Python3
py
Runtime Error
0
0
69
a,b = map(int, input().split()) c = a * b d = (a + b) *2 print(c d)
s823689180
p02389
u733159526
1502716499
Python
Python3
py
Runtime Error
0
0
59
s = int(input()).split() print(s[0]*s[1],' ',s[0]*2+s[1]*2)
s918149037
p02389
u733159526
1502716651
Python
Python3
py
Runtime Error
0
0
64
s = input().split() print(str(s[0]*s[1]),' ',str(s[0]*2+s[1]*2))
s376022498
p02389
u733159526
1502716982
Python
Python3
py
Runtime Error
0
0
79
s = int(input().split()) print(int(s[0])*int(s[1]),' ',int(s[0]*2)+int(s[1]*2))
s596622203
p02389
u117053676
1502785023
Python
Python3
py
Runtime Error
0
0
49
a,b = int(input().split()) print(a*b," ",2*(a+b))
s610695248
p02389
u117053676
1502798562
Python
Python3
py
Runtime Error
0
0
68
a,b = map(int,input().sep()) men = a*b hen =(a+b)*2 print(men,hen)
s629140629
p02389
u117053676
1502798649
Python
Python3
py
Runtime Error
0
0
79
a,b = map(int,input().sep()) men = a*b hen = (a+b)*2 print(int(men),int(hen))
s472256348
p02389
u283452598
1503037762
Python
Python3
py
Runtime Error
0
0
64
a,b=input().split() print(int(a)*int(b)+" "+(int(a)*2+int(b)*2))
s197675727
p02389
u283452598
1503037843
Python
Python3
py
Runtime Error
0
0
66
x=input().split() a,b=int(x[0]),int(x[1]) print(a*b+" "+(a*2+b*2))
s770023569
p02389
u283452598
1503038293
Python
Python3
py
Runtime Error
0
0
66
x=input().split() a=int(x[0]) b=int(x[1]) print(a*b+" "+(a*2+b*2))
s364021450
p02389
u316697096
1503130268
Python
Python
py
Runtime Error
0
0
32
a b = input() print 2*(a+b) a*b
s400256977
p02389
u316697096
1503130296
Python
Python
py
Runtime Error
0
0
33
a b = input() print a*b 2*(a+b)
s879121971
p02389
u316697096
1503130530
Python
Python
py
Runtime Error
0
0
31
a,b= input() print a*b, 2*(a+b)
s552388396
p02389
u316697096
1503130916
Python
Python
py
Runtime Error
0
0
39
a,b= input().split() print a*b, 2*(a+b)
s762607774
p02389
u316697096
1503132827
Python
Python
py
Runtime Error
0
0
67
a,b = map(int,raw_input().split()) #???????¬? print a*b , 2*(a+b)
s966300517
p02389
u316697096
1503132959
Python
Python
py
Runtime Error
0
0
64
a,b=map(int,raw_input().split()) #???????¬? print a*b,2*(a+b)
s397445597
p02389
u395334793
1503249705
Python
Python3
py
Runtime Error
0
0
60
x, y = int(input().split) print("{} {}".format(x*y,2*(x+y)))
s436291296
p02389
u506705885
1503412890
Python
Python3
py
Runtime Error
0
0
56
w=input() h=input() w=int(w) h=int(h) print(w*h,2*w+2*h)
s020574185
p02389
u727538672
1503469162
Python
Python3
py
Runtime Error
0
0
60
a, b = map(int.input().split()) print(a * b, a * 2 + b * 2)
s182530815
p02389
u740564992
1503545230
Python
Python3
py
Runtime Error
0
0
99
a = input() b = input() a = int(a) b = int(b) S = a*b syuu = 2*a+2*b print(str(S)+" "+str(syuu))
s840856344
p02389
u633333374
1503815576
Python
Python
py
Runtime Error
0
0
48
a,b = map(int,input().split()) print a*b,(a+b)*2
s445710990
p02389
u316085611
1503815834
Python
Python
py
Runtime Error
0
0
50
a,b=map(int,raw_input(),split()) print a*b,(a+b)*2
s907629881
p02389
u153665391
1503835275
Python
Python3
py
Runtime Error
0
0
106
a = [ input().split ] x = int( a[0] ) y = int( a[1] ) area = x * y rec = ( x + y ) * 2 print( area rec )
s157542226
p02389
u132415474
1504516417
Python
Python3
py
Runtime Error
0
0
63
a, b = exec(input().replace(' ', ',')) print(f"{a*b} {2(a+b)}")
s948369583
p02389
u132415474
1504516481
Python
Python3
py
Runtime Error
0
0
73
a, b = exec(input().replace(' ', ',')) print("{} {}".format(a*b, 2(a+b)))
s230157924
p02389
u132415474
1504516566
Python
Python3
py
Runtime Error
0
0
73
a, b = eval(input().replace(' ', ',')) print("{} {}".format(a*b, 2(a+b)))
s180687196
p02389
u563181068
1504947430
Python
Python3
py
Runtime Error
0
0
147
a=input() s=int(a) if s<86400 and s>=0: h=int(s/3600) m=int((s-h*3600)/60) s=s-h*3600-m*60 print(h,":",m,":",s) else: exit()
s568769397
p02389
u362494298
1505100658
Python
Python3
py
Runtime Error
0
0
65
hen = map(int(input())) print(hen[0]*hen[2] " " hen[0]*2+hen[2])
s962369855
p02389
u362494298
1505101295
Python
Python3
py
Runtime Error
0
0
71
hen = map(int(input().split()) print(hen[0]*hen[1] hen[0]*2+hen[1]*2)
s885303248
p02389
u362494298
1505101409
Python
Python3
py
Runtime Error
0
0
54
a,b = map(int(input().split()) print(a*b, ,a*2 + b*2)
s147525195
p02389
u362494298
1505101487
Python
Python3
py
Runtime Error
0
0
52
a,b = map(int,input().split() print(a*b, a*2 + b*2)
s782886559
p02389
u362494298
1505392485
Python
Python3
py
Runtime Error
0
0
51
a,b=map(int, input().split()) print(a*b +' '+2*a*b)
s481782895
p02389
u362494298
1505392583
Python
Python3
py
Runtime Error
0
0
46
a,b=map(int, input().split()) print(a*b,2a+2b)
s398936868
p02389
u088372268
1505447347
Python
Python3
py
Runtime Error
0
0
75
x = input() x = x.split() s = x[1] * x[2] l = s * (x[1] + x[2]) print(s, l)
s533468005
p02389
u088372268
1505454156
Python
Python3
py
Runtime Error
0
0
55
x = list(input().split) print(x[1]*x[2], 2*(x[1]+x[2]))
s221117065
p02389
u088372268
1505455197
Python
Python3
py
Runtime Error
0
0
69
x = list(input().split()) s = x[0]*x[1] l = 2*(x[0]+x[1]) print(s, l)
s404247801
p02389
u903579014
1505866611
Python
Python3
py
Runtime Error
0
0
72
x1 = input() x2 = input() x1 = int(x1) x2 = int(x2) x3 = x1+x2 print(x3)
s393932193
p02389
u015553205
1506492365
Python
Python3
py
Runtime Error
0
0
88
import sys args = sys.argv a = int(args[1]) b = int(args[2]) print(a*b) print(2*a+2*b)
s109099191
p02389
u015553205
1506493210
Python
Python3
py
Runtime Error
0
0
120
import sys args = sys.argv a = int(args[1]) b = int(args[2]) def P(x,y): print(x*y) print(2*x+2*y) return 0 P(a,b)
s114830543
p02389
u015553205
1506493564
Python
Python3
py
Runtime Error
0
0
112
import sys args = sys.argv a = int(args[1]) b = int(args[2]) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
s383992932
p02389
u015553205
1506493666
Python
Python3
py
Runtime Error
0
0
112
import sys args = sys.argv a = int(args[0]) b = int(args[1]) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
s351700838
p02389
u015553205
1506494265
Python
Python3
py
Runtime Error
0
0
112
import sys args = sys.argv a = int(args[0]) b = int(args[1]) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
s698046317
p02389
u015553205
1506494343
Python
Python3
py
Runtime Error
0
0
112
import sys args = sys.argv a = int(args[0]) b = int(args[1]) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
s444510721
p02389
u015553205
1506499092
Python
Python3
py
Runtime Error
0
0
96
a = input() b = input() a = int(a) b = int(b) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
s184710940
p02389
u505411588
1507197997
Python
Python3
py
Runtime Error
0
0
45
x = int(input()) y = int(input()) print(x*y)
s829150190
p02389
u505411588
1507199580
Python
Python3
py
Runtime Error
0
0
38
x,y = int(input()) print(x*y,x*2+y*2)
s804370405
p02389
u505411588
1507199622
Python
Python3
py
Runtime Error
0
0
53
x = int(input()) y = int(input()) print(x*y,x*2+y*2)
s958986575
p02389
u505411588
1507199795
Python
Python3
py
Runtime Error
0
0
53
x = input() y = input() int(x,y) print(x*y,x*2+y*2)
s759778051
p02389
u505411588
1507199891
Python
Python3
py
Runtime Error
0
0
53
a = input() b = input() int(a,b) print(a*b,a*2+b*2)
s965966661
p02389
u505411588
1507200407
Python
Python3
py
Runtime Error
0
0
53
a = int(input()) b = int(input()) print(a*b,a*2+b*2)
s958107828
p02389
u219202227
1507274966
Python
Python3
py
Runtime Error
0
0
61
a,b=int(input()).split() print("{0} {1}".format(a*b,a*2+b*2))
s762450688
p02389
u219202227
1507275024
Python
Python3
py
Runtime Error
0
0
61
a,b=int(input().split()) print("{0} {1}".format(a*b,a*2+b*2))
s259713168
p02389
u825994660
1507520241
Python
Python3
py
Runtime Error
0
0
71
a = int(input()) b = int(input()) print(str(a*b) + " " + str(2a + 2b))
s404586774
p02389
u825994660
1507520327
Python
Python3
py
Runtime Error
0
0
65
a = int(input()) b = int(input()) print(str(a*b) ,str(2a + 2b))