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
s515484436
p02389
u180914582
1438571019
Python
Python3
py
Runtime Error
0
0
77
x = input().split() a = int(x[0]) b = int(x[1]) print((a * b),(a + b) * 2))
s832171466
p02389
u686134343
1439171754
Python
Python3
py
Runtime Error
0
0
12
????????????
s124097293
p02389
u676498528
1439175854
Python
Python3
py
Runtime Error
0
0
60
( a, b) = input(), sprit() a = int(a) b = int(b) a*b a*2+b*2
s784548278
p02389
u676498528
1439176277
Python
Python3
py
Runtime Error
0
0
66
( a, b) = input().sprit() a = int(a) b = int(b) print(a*b a*2+b*2)
s301626396
p02389
u676498528
1439176484
Python
Python3
py
Runtime Error
0
0
67
( a, b) = input().sprit() a = int(a) b = int(b) print(a*b, a*2+b*2)
s921500470
p02389
u138661634
1440743389
Python
Python3
py
Runtime Error
0
0
80
a, b = [int(x) for i in input().split()] m = a * b n = a * 2 + b * 2 print(m, n)
s063786471
p02389
u100054264
1441028093
Python
Python
py
Runtime Error
0
0
142
import sys vert_len = int(sys.argv[1]) hori_len = int(sys.argv[2]) area_size = vert_len * hori_len circular_len = 2 * vert_len + 2 * hori_len
s699358905
p02389
u522477969
1441725936
Python
Python
py
Runtime Error
0
0
109
l = map(int,raw_input().split() ) men = l[0] * l[1] shu = (l[0] + l[1]) * 2 print(str(men) + " " + str(shu)
s299087420
p02389
u253463900
1442198545
Python
Python3
py
Runtime Error
0
0
92
data = input() len = data.split() ans = int(data[0]) * int(data[1]) print('{0}'.format(ans))
s653084183
p02389
u408701661
1442198715
Python
Python
py
Runtime Error
0
0
132
input = raw_input() s = int(input.split()[0]) l = int(input.split()[1]) ans_1 = s*l ans_2 = 2*(s+l) print src(ans_1)+" "+src(ans_2)
s095553496
p02389
u894381890
1442199171
Python
Python
py
Runtime Error
0
0
95
inport sys x = sys.stdin.readline() a, b = x.split(" ") S = a * b l = 2 * (a + b) print S,l
s464054035
p02389
u729824721
1442199176
Python
Python
py
Runtime Error
0
0
120
import sys line = sys.stdin.readline() tate, yoko = line.split(" ") S = tate * yoko T = 2 * (tate + yoko) print S, T
s127323052
p02389
u729824721
1442199208
Python
Python
py
Runtime Error
0
0
124
import sys line = sys.stdin.readline() tate, yoko = line.split(" ") S = tate * yoko T = 2 * (tate + yoko) print S, " " T
s457871173
p02389
u729824721
1442199217
Python
Python
py
Runtime Error
0
0
125
import sys line = sys.stdin.readline() tate, yoko = line.split(" ") S = tate * yoko T = 2 * (tate + yoko) print S, " ", T
s832928290
p02389
u894381890
1442199225
Python
Python
py
Runtime Error
0
0
95
inport sys x = sys.stdin.readline() a, b = x.split(" ") S = a * b l = 2 * (a + b) print S l
s985197383
p02389
u894381890
1442199260
Python
Python
py
Runtime Error
0
0
118
inport sys x = sys.stdin.readline() a, b = x.split(" ") a = int(a) b = int(b) S = a * b l = 2 * (a + b) print S l
s500977472
p02389
u729824721
1442199326
Python
Python
py
Runtime Error
0
0
169
import sys line = sys.stdin.readline() tate, yoko = line.split(" ") tate = int(tate) yoko = int(yoko) S = tate * yoko T = 2 * (tate + yoko) print ('%d %d") % (S, T)
s920031556
p02389
u019737947
1442199365
Python
Python
py
Runtime Error
0
0
74
a = raw_input() b = raw_input() print int(a) * int(b), 2*(int(a) + int(b))
s623203954
p02389
u894381890
1442199383
Python
Python
py
Runtime Error
0
0
128
inport sys x = sys.stdin.readline() a, b = x.split(" ") a = int(a) b = int(b) S = a * b l = 2 * (a + b) print '%d %d'%(S,l)
s268088260
p02389
u894381890
1442199418
Python
Python
py
Runtime Error
0
0
130
inport sys x = sys.stdin.readline() a, b = x.split(" ") a = int(a) b = int(b) S = a * b l = 2 * (a + b) print '%d %d' % (S,l)
s441701531
p02389
u386372280
1442202636
Python
Python
py
Runtime Error
0
0
138
import sys input = sys.stdin.read() (a, b) = map(lambda x:int(x) , input.split(" ")) x = a*b y = 2*(a+b) print str(x) + "?\t" + str(y)
s202145276
p02389
u386372280
1442202770
Python
Python
py
Runtime Error
0
0
121
import sys input = sys.stdin.read() (a,b) = [int(x) for x in input.split(" ")] x = a*b y = 2*(a+b) print x + "?\t" + y
s430753446
p02389
u313994256
1442242395
Python
Python
py
Runtime Error
0
0
78
list = map(int, raw_input().split()) print list[0]*list[1] 2*(list[0]+list[1])
s536760782
p02389
u969115822
1442280766
Python
Python
py
Runtime Error
0
0
183
a = 0 b= 0 input_numbers = raw_input() fori in input_numbers: if input_numbers[0] == i: a = int(i) elif input_numbers[2] == i: b = int(i) print a * b, 2 * (a + b)
s594235878
p02389
u969115822
1442280811
Python
Python
py
Runtime Error
0
0
186
a = 0 b= 0 input_numbers = raw_input() fori in input_numbers: if input_numbers[0] == i: a = int(i) elif input_numbers[2] == i: b = int(i) print a * b, 2 * (a + b)
s499791469
p02389
u969115822
1442299475
Python
Python
py
Runtime Error
0
0
103
numbers = raw_input() numbers = numbers.split() a = numbers[0] b = numbers[1] print a * b, 2 * (a + b)
s769311951
p02389
u969115822
1442299684
Python
Python
py
Runtime Error
0
0
97
num = raw_input() num = numbers.split() a = int(num[0]) b = int(num[1]) print a * b, 2 * (a + b)
s014717042
p02389
u665997200
1443014016
Python
Python
py
Runtime Error
0
0
108
a = input(); print(int(a.split()[0])*int(a.split()[1]),int(a.split()[0]) * 2 + int(a.split()[1])*2, end=" ")
s828888910
p02389
u154437061
1443493778
Python
Python
py
Runtime Error
10
6392
81
a = raw_input() x = int(a[0]) y = int(a[2]) s = x * y l = 2 * x + 2 * y print s,l
s126006309
p02389
u627893595
1443516320
Python
Python3
py
Runtime Error
0
0
183
using namespace std; main(){ int a, b; int area, length; cin >> a >> b; area = a * b; length =2*( a + b); cout << area << " " << length << endl; }
s189414210
p02389
u089524441
1444975599
Python
Python3
py
Runtime Error
0
0
46
x = input() y = input() print(int(x) * int(y))
s465851941
p02389
u089524441
1444975639
Python
Python3
py
Runtime Error
0
0
66
x = input() y = input() num = int(x) num2 = int(y) print(num*num2)
s935447577
p02389
u139034459
1445705539
Python
Python
py
Runtime Error
0
0
158
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split(" ") rect = var[0] * var[1] length = var[0] * 2 + var[1] * 2 print rect + " " + length
s338639242
p02389
u139034459
1445705678
Python
Python
py
Runtime Error
0
0
178
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split(" ") rect = int(var[0]) * int(var[1]) length = int(var[0]) * 2 + int(var[1]) * 2 print rect + " " + length
s118687968
p02389
u139034459
1445705725
Python
Python
py
Runtime Error
0
0
182
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input() print str(var) rect = int(var[0]) * int(var[1]) length = int(var[0]) * 2 + int(var[1]) * 2 print rect + " " + length
s445638143
p02389
u139034459
1445705805
Python
Python
py
Runtime Error
0
0
175
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() rect = int(var[0]) * int(var[1]) length = int(var[0]) * 2 + int(var[1]) * 2 print rect + " " + length
s706126384
p02389
u433833528
1446775119
Python
Python
py
Runtime Error
0
0
45
a = input() b = input() print a*b + 2*(a+b)
s197936610
p02389
u088335306
1446776006
Python
Python3
py
Runtime Error
0
0
79
i = map(int, raw_input().split()) a=i[0] b=i[1] print("%d %d" % (a*b, (a+b)*2))
s601432789
p02389
u465282900
1446822267
Python
Python
py
Runtime Error
0
0
65
a=input() b=input() mennseki=a*b syuu=(a+b)*2 print mennseki,syuu
s921205301
p02389
u980683323
1449532744
Python
Python3
py
Runtime Error
0
0
40
x=int(input()) y=int(input()) print(x*y)
s615887905
p02389
u980683323
1449532774
Python
Python3
py
Runtime Error
0
0
61
x=int(input()) y=int(input()) print("{} {}" % (x*y, 2*(x+y)))
s488943395
p02389
u297949443
1449917681
Python
Python
py
Runtime Error
0
0
123
import sys a,b = map(int(x) ,sys.stdin.readline().split()) area = a*b surround = 2*(a+b) print("%d %d" % (area, surround))
s805002254
p02389
u261533743
1450499073
Python
Python3
py
Runtime Error
0
0
59
data = list(map(int,input.split())) print data[0] * data[1]
s912423766
p02389
u587712547
1451367238
Python
Python
py
Runtime Error
0
0
62
a,b = map(int, [i for i in input().split(' ')]) print a*2, b*2
s424928685
p02389
u587712547
1451367464
Python
Python
py
Runtime Error
0
0
66
a,b = map(int, [i for i in input().split(' ')]) print a*b, (a+b)*2
s705358486
p02389
u682357930
1452047098
Python
Python3
py
Runtime Error
0
0
52
n = input() print 2*(n[0]+n[1]); print n[0] * n[1];
s384171850
p02389
u970436839
1452047200
Python
Python
py
Runtime Error
0
0
41
a = input() b = input() print a*b 2*a+2*b
s782961198
p02389
u613805578
1452047253
Python
Python
py
Runtime Error
0
0
49
a = input() b = input() print a * b 2 * a + 2 * b
s627495982
p02389
u682357930
1452047271
Python
Python3
py
Runtime Error
0
0
75
n = map(int, raw_input().split); print(2*(n[0]+n[1])); print(n[0] * n[1]);
s561404150
p02389
u613805578
1452047284
Python
Python
py
Runtime Error
0
0
57
a = input() b = input() print a * b print 2 * a + 2 * b
s045365062
p02389
u682357930
1452047299
Python
Python3
py
Runtime Error
0
0
77
n = map(int, raw_input().split()); print(2*(n[0]+n[1])); print(n[0] * n[1]);
s225177326
p02389
u393769849
1452047332
Python
Python
py
Runtime Error
0
0
47
(a b) = input() print a * b print a * 2 + b * 2
s705443433
p02389
u682357930
1452047348
Python
Python3
py
Runtime Error
0
0
57
a,b = map(int, raw_input().split()); print(2*(a+b) a*b);
s905031048
p02389
u613805578
1452047358
Python
Python
py
Runtime Error
0
0
59
a = input() b = input() return a * b return 2 * a + 2 * b
s034798033
p02389
u682357930
1452047360
Python
Python3
py
Runtime Error
0
0
55
a,b = map(int, raw_input().split()); print2*(a+b) a*b;
s449512935
p02389
u393769849
1452047374
Python
Python
py
Runtime Error
0
0
55
a = input() b = input() print a * b print a * 2 + b * 2
s145169995
p02389
u613805578
1452047378
Python
Python
py
Runtime Error
0
0
59
a = input() b = input() return a * b + " " + 2 * a + 2 * b
s829128958
p02389
u613805578
1452047394
Python
Python
py
Runtime Error
0
0
58
a = input() b = input() print a * b + " " + 2 * a + 2 * b
s238701087
p02389
u393769849
1452047415
Python
Python
py
Runtime Error
0
0
46
a b = input() print a * b print a * 2 + b * 2
s612333955
p02389
u613805578
1452047416
Python
Python
py
Runtime Error
0
0
63
a = input() b = input() return (a * b) + " " + (2 * a + 2 * b)
s442428481
p02389
u038005340
1452047416
Python
Python
py
Runtime Error
0
0
42
a = input() b = input() print a*b 2*(a+b)
s306767684
p02389
u682357930
1452047440
Python
Python3
py
Runtime Error
0
0
57
a,b = map(int, raw_input().split()); print"2*(a+b) a*b";
s671567695
p02389
u663227983
1452047450
Python
Python
py
Runtime Error
0
0
48
a = input() b = input() print a*b +' ' + 2*(a+b)
s742918917
p02389
u038005340
1452047460
Python
Python
py
Runtime Error
0
0
54
a = input() b = input() print a * b ' ' 2 * ( a + b )
s795936469
p02389
u663227983
1452047466
Python
Python
py
Runtime Error
0
0
48
a = input() b = input() print a*b +' ' + 2*(a+b)
s034359948
p02389
u682357930
1452047473
Python
Python3
py
Runtime Error
0
0
60
a,b = map(int, raw_input().split()); print"2*(a+b) "+"a*b";
s697255165
p02389
u663227983
1452047481
Python
Python
py
Runtime Error
0
0
47
a = input() b = input() print a*b +' '+ 2*(a+b)
s673814576
p02389
u682357930
1452047490
Python
Python3
py
Runtime Error
0
0
56
a,b = map(int, raw_input().split()); print 2*(a+b) a*b;
s187999479
p02389
u613805578
1452047491
Python
Python
py
Runtime Error
0
0
62
a = input() b = input() return (a * b) + "" + (2 * a + 2 * b)
s510034484
p02389
u038005340
1452047515
Python
Python
py
Runtime Error
0
0
58
a = input() b = input() print a * b + ' ' + 2 * ( a + b )
s341111871
p02389
u682357930
1452047550
Python
Python3
py
Runtime Error
0
0
58
a,b = map(int, raw_input().split()); print 2*(a+b) , a*b;
s981583839
p02389
u682357930
1452047604
Python
Python3
py
Runtime Error
0
0
57
a,b = map(int, raw_input().split()); print 2*(a+b), a*b;
s239318877
p02389
u682357930
1452047616
Python
Python3
py
Runtime Error
0
0
59
a,b = map(int, raw_input().split()); print (2*(a+b), a*b);
s431649445
p02389
u038005340
1452047627
Python
Python
py
Runtime Error
0
0
72
a = input() b = input() print a * b , print ' ' , print 2 * ( a + b )
s207746357
p02389
u682357930
1452047669
Python
Python3
py
Runtime Error
0
0
66
a,b = map(int, raw_input().split()); print "2*(a+b)", print "a*b"
s210918245
p02389
u663227983
1452047670
Python
Python
py
Runtime Error
0
0
48
a[1] = input() print a[0]*a[1]+' '+2*(a[0]+a[1])
s249623258
p02389
u038243492
1452047709
Python
Python
py
Runtime Error
0
0
17
s = a * b print s
s678381376
p02389
u682357930
1452047737
Python
Python3
py
Runtime Error
0
0
67
a,b = map(int, raw_input().split()); print '%d %d' %(2*(a+b), a*b)
s432777666
p02389
u682357930
1452047767
Python
Python3
py
Runtime Error
0
0
69
a, b = map(int, raw_input().split()); print '%d %d' % (2*(a+b), a*b)
s784745914
p02389
u824204304
1452047776
Python
Python
py
Runtime Error
0
0
85
a = raw_input() b = raw_input() a = int(a) b = int(b) print a * b print a + a + b + b
s132636779
p02389
u038005340
1452047794
Python
Python
py
Runtime Error
0
0
58
a = input() b = input() print a * b , ' ' , 2 * ( a + b )
s281780670
p02389
u824204304
1452047800
Python
Python
py
Runtime Error
0
0
87
a = raw_input() b = raw_input() a = int(a) b = int(b) print a * b print a + a + b + b
s393818816
p02389
u563876281
1452047821
Python
Python
py
Runtime Error
0
0
19
a=input() b=input()
s890907198
p02389
u970436839
1452047885
Python
Python
py
Runtime Error
0
0
54
a, b = map(int, raw_input().split()) print a*b 2*a+2*b
s647153285
p02389
u393769849
1452047886
Python
Python
py
Runtime Error
0
0
48
def suuji(a,b): print a * b print a * 2 + b * 2
s350702400
p02389
u613805578
1452047901
Python
Python
py
Runtime Error
0
0
50
a = input() b = input() print a * b, 2 * a + 2 * b
s651358192
p02389
u038005340
1452047904
Python
Python
py
Runtime Error
0
0
77
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print ans1' 'ans2
s182415492
p02389
u038005340
1452047911
Python
Python
py
Runtime Error
0
0
75
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print ans1 ans2
s835990046
p02389
u824204304
1452047912
Python
Python
py
Runtime Error
0
0
85
a = raw_input() b = raw_input() a = int(a) b = int(b) print a * b print a + a + b + b
s192577036
p02389
u613805578
1452047917
Python
Python
py
Runtime Error
0
0
51
a = input(), b = input() print a * b, 2 * a + 2 * b
s573237692
p02389
u038243492
1452047919
Python
Python
py
Runtime Error
0
0
71
a = raw_input() b = raw_input() a = int(a) b = int(b) s = a * b print s
s742154068
p02389
u177808190
1452047920
Python
Python
py
Runtime Error
0
0
82
x = raw_input() y = raw_input() x = int(x) y = int(y) print x * y 2 * x + 2 * y
s519279287
p02389
u920118302
1452047925
Python
Python
py
Runtime Error
0
0
58
a = int(input()) b = int(input()) print(a * b, 2 * (a+b))
s839656625
p02389
u038005340
1452047925
Python
Python
py
Runtime Error
0
0
77
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print (ans1 ans2)
s017797878
p02389
u069446126
1452047949
Python
Python
py
Runtime Error
0
0
106
a = raw_input() b = raw_input() a = int(a) b = int(b) area = a * b around = a*2 + b*2 print area around
s628173672
p02389
u038005340
1452047995
Python
Python
py
Runtime Error
0
0
83
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print ans1 + ' ' + ans2
s521241911
p02389
u038005340
1452048001
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print ans1 ' ' ans2
s613523841
p02389
u630265299
1452048045
Python
Python
py
Runtime Error
0
0
61
a = input() b = input() s = a * b l = 2 * a + 2 * b print s l
s512237583
p02389
u456885296
1452048048
Python
Python
py
Runtime Error
0
0
44
a=input() b=input() print a*b print 2*a+2*b
s161197745
p02389
u393769849
1452048069
Python
Python
py
Runtime Error
0
0
50
def suuji(a,b): print a * b , print a * 2 + b * 2