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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s370487135 | p02389 | u047737909 | 1452487469 | Python | Python | py | Runtime Error | 0 | 0 | 73 | a,b = map(int, raw_input().split())
c = a*b
d = 2*(a+b)
print'%d %d'%(c,d |
s721985168 | p02389 | u663227983 | 1452508835 | Python | Python | py | Runtime Error | 0 | 0 | 59 | m = map(int, input().split())
print m[0]*m[1],2*(m[0]+m[1]) |
s406952549 | p02389 | u663227983 | 1452508859 | Python | Python | py | Runtime Error | 0 | 0 | 58 | m = map(int,input().split())
print m[0]*m[1],2*(m[0]+m[1]) |
s686065215 | p02389 | u663227983 | 1452508871 | Python | Python | py | Runtime Error | 0 | 0 | 58 | m = map(int,input().split())
print m[0]*m[1],2*(m[0]+m[1]) |
s380840112 | p02389 | u233232390 | 1452570225 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print(a*b,2*a+2*b) |
s870514492 | p02389 | u233232390 | 1452570268 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a = input()
b = input()
s = a*b
l = 2*a + 2*b
print(s,l) |
s083696299 | p02389 | u424209323 | 1452571589 | Python | Python | py | Runtime Error | 0 | 0 | 44 | num = split().input()
print num[1] * num[2] |
s250975600 | p02389 | u424209323 | 1452571707 | Python | Python | py | Runtime Error | 0 | 0 | 48 | num = split().raw_input()
print num[1] * num[2] |
s816038458 | p02389 | u424209323 | 1452571728 | Python | Python | py | Runtime Error | 0 | 0 | 48 | num = raw_input().split()
print num[1] * num[2] |
s700115580 | p02389 | u424209323 | 1452571773 | Python | Python | py | Runtime Error | 0 | 0 | 58 | num = map(int, raw_input().split())
print num[1] * num[2] |
s564866663 | p02389 | u424209323 | 1452572964 | Python | Python | py | Runtime Error | 0 | 0 | 79 | num = map(int, raw_input().split())
print num[0] * num[1] 2*num[0] + 2*num[1] |
s168525695 | p02389 | u456885296 | 1452575442 | Python | Python | py | Runtime Error | 0 | 0 | 50 | a,b=map(int,raw_input(),split())
print a*b,(a+b)*2 |
s229287691 | p02389 | u078762447 | 1452576022 | Python | Python | py | Runtime Error | 0 | 0 | 78 | l = map( int , raw_input().split())
print l[0] * l[1] ' ' l[0] * 2 + l[1] * 2 |
s222714830 | p02389 | u532962080 | 1452578972 | Python | Python | py | Runtime Error | 0 | 0 | 60 | a = int(raw_input())
b = int(raw_input())
print a*b, (a+b)*2 |
s439066569 | p02389 | u532962080 | 1452579008 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a = int(raw_input())
b = int(raw_input())
print a*b (a+b)*2 |
s239358005 | p02389 | u532962080 | 1452579245 | Python | Python | py | Runtime Error | 0 | 0 | 50 | a = raw_input()
b = raw_input()
print a*b, (a+b)*2 |
s511955906 | p02389 | u532962080 | 1452579555 | Python | Python | py | Runtime Error | 0 | 0 | 54 | a, b = map(int, raw_input().split())
print a*b (a+b)*2 |
s378708958 | p02389 | u532962080 | 1452579661 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a, b = map(int, raw_input().split())
return (a*b (a+b)*b) |
s083449297 | p02389 | u532962080 | 1452579787 | Python | Python | py | Runtime Error | 0 | 0 | 53 | a,b = map(int, raw_input().split())
print a*b (a+b)*b |
s156631872 | p02389 | u078762447 | 1452588738 | Python | Python | py | Runtime Error | 0 | 0 | 90 | l = map( int , raw_input().split())
s = l[0] * l[1]
r = l[0] * 2 + l[1] * 2
print s '' r |
s223849976 | p02389 | u078762447 | 1452588794 | Python | Python | py | Runtime Error | 0 | 0 | 87 | l = map( int , raw_input().split())
s = l[0] * l[1]
r = l[0] * 2 + l[1] * 2
print s r |
s644477493 | p02389 | u078762447 | 1452589290 | Python | Python | py | Runtime Error | 0 | 0 | 91 | l = map( int , raw_input().split())
s = l[0] * l[1]
r = ( l[0] + l[1] ) * 2
print s+' '+r |
s310236442 | p02389 | u078762447 | 1452589347 | Python | Python | py | Runtime Error | 0 | 0 | 101 | l = map( int , raw_input().split())
s = l[0] * l[1]
r = l[0] + l[0] + l[1] + l[1]
print s + ' ' + r |
s691506349 | p02389 | u828153094 | 1452619599 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a = input(), b = input()
print a*b, 2*(a+b) |
s140182653 | p02389 | u828153094 | 1452619891 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a b = input()
print a*b 2*(a + b) |
s357202090 | p02389 | u828153094 | 1452620021 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a = input(),
b = input()
print a*b,
print 2*(a + b) |
s152541795 | p02389 | u828153094 | 1452620129 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a, b = input()
print a*b, 2*(a+b) |
s320497190 | p02389 | u828153094 | 1452620400 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a = input()
b = input()
print a*b
print 2*(a + b) |
s310535256 | p02389 | u828153094 | 1452620461 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a = input(),
b = input()
print a*b,
print 2*(a + b) |
s827458809 | p02389 | u828153094 | 1452621914 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a,b = input()
print a*b,2*(a + b) |
s072473530 | p02389 | u828153094 | 1452622096 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a = input(),
b = input()
print a*b,
print 2*(a + b) |
s136223202 | p02389 | u985628197 | 1453121100 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(menseki nagasa) |
s498234586 | p02389 | u985628197 | 1453121195 | Python | Python | py | Runtime Error | 0 | 0 | 122 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(menseki nagasa) |
s242469622 | p02389 | u985628197 | 1453121292 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(menseki\ nagasa) |
s580746451 | p02389 | u985628197 | 1453121372 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(menseki,nagasa) |
s072243696 | p02389 | u985628197 | 1453121628 | Python | Python | py | Runtime Error | 0 | 0 | 121 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print menseki nagasa |
s385484402 | p02389 | u985628197 | 1453121737 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(str(menseki)+" "+str(nagasa)) |
s009584745 | p02389 | u985628197 | 1453121790 | Python | Python | py | Runtime Error | 0 | 0 | 136 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(str(menseki)+" "+str(nagasa)) |
s335094250 | p02389 | u985628197 | 1453121918 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | import sys
param=input().split()
menseki=int(param[0])*int(param[1])
nagasa=int(param[0])*2+int(param[1])*2
print(menseki nagasa) |
s901810951 | p02389 | u803327846 | 1453210395 | Python | Python | py | Runtime Error | 0 | 0 | 68 | a = raw_input() . split()
print a[0] * a[1]
print 2 * (a[0] + a[1]) |
s007015941 | p02389 | u803327846 | 1453210646 | Python | Python | py | Runtime Error | 0 | 0 | 77 | a = raw_input() . split()
S = a[0] * a[1]
O = 2 * (a[0] + a[1])
print S + O |
s448717568 | p02389 | u803327846 | 1453211477 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = raw_input() . split()
S = a[0] * a[1]
O = 2 * (a[0] + a[1])
print S
print O |
s920557615 | p02389 | u803327846 | 1453212021 | Python | Python | py | Runtime Error | 0 | 0 | 76 | a = raw_input() . split()
S = a[0] * a[1]
O = 2 * (a[0] + a[1])
print S, O |
s776636386 | p02389 | u803327846 | 1453212174 | Python | Python | py | Runtime Error | 0 | 0 | 77 | a = raw_input(). split()
S = a[0] * a[1]
O = 2 * a[0] + 2 * a[1]
print S , O |
s565276819 | p02389 | u803327846 | 1453212454 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a , b= raw_input(). split()
S = a * b
O = 2 * a + 2 * b
print str(S) + ' ' str(O) |
s765849666 | p02389 | u803327846 | 1453212471 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a , b= raw_input(). split()
S = a * b
O = 2 * a + 2 * b
print str(S) + ' ' + str(O) |
s497990499 | p02389 | u828153094 | 1453220047 | Python | Python | py | Runtime Error | 0 | 0 | 54 | a, b = map(int, raw_input().split())
print a*b 2*(a+b) |
s406625985 | p02389 | u834702748 | 1453555488 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | lists = split( )
a = int(lists[0])
b = int(lists[1])
sq = a * b
length = (a + b) * 2
print(sq, length) |
s386260761 | p02389 | u834702748 | 1453555804 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | lists = split( )
a = int(lists[0])
b = int(lists[1])
sq = a * b
length = a * 2 + b * 2
print(sq, length) |
s626359603 | p02389 | u790959181 | 1453904852 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a = raw_input()
x,y = a.split
x = int(x)
y = int(y)
print x*y + " " + x*2 + y*2 |
s068727042 | p02389 | u790959181 | 1453904873 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a = raw_input()
x,y = a.split
n = int(x)
m = int(y)
print n*m + " " + n*2 + m*2 |
s501612712 | p02389 | u790959181 | 1453904912 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = raw_input()
x,y = a.split()
n = int(x)
m = int(y)
print n*m + " " + n*2 + m*2 |
s372882322 | p02389 | u790959181 | 1453905025 | Python | Python | py | Runtime Error | 0 | 0 | 84 | a = raw_input()
x,y = a.split(" ")
n = int(x)
m = int(y)
print n*m + " " + n*2 + m*2 |
s853771539 | p02389 | u790959181 | 1453905082 | Python | Python | py | Runtime Error | 0 | 0 | 104 | a = raw_input()
x,y = a.split(" ")
n = int(x)
m = int(y)
S = n*m
SUM = n * 2 + m * 2
print S + " " + SUM |
s232634060 | p02389 | u790959181 | 1453905124 | Python | Python | py | Runtime Error | 0 | 0 | 106 | a = raw_input()
[x,y] = a.split(" ")
n = int(x)
m = int(y)
S = n*m
SUM = n * 2 + m * 2
print S + " " + SUM |
s701007670 | p02389 | u790959181 | 1453905213 | Python | Python | py | Runtime Error | 0 | 0 | 102 | a = raw_input().split(" ")
n = int(a[0])
m = int(a[1])
S = n*m
SUM = n * 2 + m * 2
print S + " " + SUM |
s970343661 | p02389 | u790959181 | 1453905325 | Python | Python | py | Runtime Error | 0 | 0 | 110 | a = raw_input()
x,y = a.split(" ")
n = int(a[0])
m = int(a[1])
S = n*m
SUM = n * 2 + m * 2
print S + " " + SUM |
s720533105 | p02389 | u436807165 | 1454986995 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a = input()
b = input()
print a*b,2 * (a+b) |
s935239738 | p02389 | u436807165 | 1454987019 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print a*b, 2*(a+b) |
s317935686 | p02389 | u436807165 | 1454987025 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print a*b, 2*(a+b) |
s146415705 | p02389 | u436807165 | 1454987063 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print a*b, 2*(a+b) |
s618410066 | p02389 | u436807165 | 1454987423 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a,b = map(int,input().split())
print a*b,2*(a+b) |
s220478705 | p02389 | u436807165 | 1454987474 | Python | Python | py | Runtime Error | 0 | 0 | 50 | (a,b) = map(int,input().split())
print a*b,2*(a+b) |
s444851248 | p02389 | u265577530 | 1455255691 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | x=input().split()
print(str(x[0]*2+x[1]*2) + " ")
print(x[0]*x[1]) |
s734543672 | p02389 | u905964869 | 1455353723 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a,b = raw_input().split("\n")
print int(a)*int(b) |
s497652338 | p02389 | u905964869 | 1455353872 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a,b = raw_input().sprit().split(" ")
print int(a)*int(b) |
s728406163 | p02389 | u148101999 | 1456454587 | Python | Python | py | Runtime Error | 0 | 0 | 87 | import sys
argv = sys.argv
x = int(argv[1])
y = int(args[2])
print x*y,
print 2*x+2*y, |
s611033424 | p02389 | u148101999 | 1456454741 | Python | Python | py | Runtime Error | 0 | 0 | 85 | import sys
argv = sys.argv
x = int(argv[1])
y = int(argv[2])
print x*y,
print 2*x+2*y |
s146553902 | p02389 | u148101999 | 1456454969 | Python | Python | py | Runtime Error | 0 | 0 | 95 | import sys
argv = sys.argv
x = int(argv[1])
y = int(argv[2])
print x*y,
print " "
print 2*x+2*y |
s809670947 | p02389 | u148101999 | 1456455073 | Python | Python | py | Runtime Error | 0 | 0 | 96 | import sys
argv = sys.argv
x = int(argv[1])
y = int(argv[2])
print x*y,
print " ",
print 2*x+2*y |
s430687998 | p02389 | u653239976 | 1456566739 | Python | Python | py | Runtime Error | 0 | 0 | 113 | l = raw_input().split()
a = int(l[0])*int(l[1])
b = int(l[0])*2+int(l[1])*2
print a ,b
l = raw_input().split() |
s015083786 | p02389 | u653239976 | 1456566830 | Python | Python | py | Runtime Error | 0 | 0 | 112 | l = raw_input().split()
a = int(l[0])*int(l[1])
b = int(l[0])*2+int(l[1])*2
print a ,b
l = raw_input().split() |
s901727387 | p02389 | u975539923 | 1457142608 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a = input()
b = input()
s = a * b
l = 2 * (a+b)
print "%d %d" % (s, l) |
s558535470 | p02389 | u075836834 | 1457260387 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | a = input()
b = input()
print(int(a)*int(b)) |
s202534312 | p02389 | u075836834 | 1457260443 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = input()
b = input()
print(int(a)*int(b),2*(int(a)+int(b)) |
s646736919 | p02389 | u075836834 | 1457260585 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = input()
b = input()
print(int(a)*int(b),2*(int(a)+int(b))) |
s168027481 | p02389 | u075836834 | 1457262263 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | a,b = map(int,input())
print(a*b,2*(a+b)) |
s408852567 | p02389 | u899670963 | 1457318358 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a = input()
b = input()
print a * b, 2*a + 2*b |
s677247657 | p02389 | u899670963 | 1457318450 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a = input()
b = input()
print a * b, 2*a + 2*b |
s050126211 | p02389 | u715281953 | 1457321046 | Python | Python | py | Runtime Error | 0 | 0 | 90 | n = raw_input()
a = n.split(" ")
b = int(a[0])
c = int(a[1])
print = b * c
print = (b+c)*2 |
s079394937 | p02389 | u715281953 | 1457321098 | Python | Python | py | Runtime Error | 0 | 0 | 90 | n = raw_input()
a = n.split(" ")
b = int(a[0])
c = int(a[1])
print = b * c
print = (b+c)*2 |
s417485216 | p02389 | u715281953 | 1457321395 | Python | Python | py | Runtime Error | 0 | 0 | 78 | n = raw_input()
a = n.split(" ")
b = int(a[0])
c = int(a[1])
print b*c (b+c)*2 |
s492590414 | p02389 | u652375714 | 1458485576 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = raw_input().split()
area=a[0]*a[1]
length=2*(a[0]+a[1])
print area+" "+length |
s052812725 | p02389 | u652375714 | 1458485824 | Python | Python | py | Runtime Error | 0 | 0 | 77 | a = raw_input().split()
area=a[0]*a[1]
length=2*(a[0]+a[1])
print area,length |
s935368700 | p02389 | u652375714 | 1458485993 | Python | Python | py | Runtime Error | 0 | 0 | 77 | a = raw_input().split()
area=a[0]*a[1]
length=2*(a[0]+a[1])
print area,length |
s068639986 | p02389 | u652375714 | 1458486015 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a = raw_input().split()
area=a[0]*a[1]
length=2*(a[0]+a[1])
print area,length |
s003561237 | p02389 | u869301406 | 1458621530 | Python | Python | py | Runtime Error | 0 | 0 | 38 | a=input()
b=input()
print a*b, 2*a+2*b |
s410908262 | p02389 | u869301406 | 1458621741 | Python | Python | py | Runtime Error | 0 | 0 | 38 | a=input()
b=input()
print a*b, 2*a+2*b |
s645267686 | p02389 | u418434817 | 1458995276 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a=input()
b=input()
c=a*b
d=(a+b)*2
print c+" "+d |
s954292971 | p02389 | u418434817 | 1458995308 | Python | Python | py | Runtime Error | 0 | 0 | 41 | a,b=input()
c=a*b
d=(a+b)*2
print c+" "+d |
s795484755 | p02389 | u418434817 | 1458995473 | Python | Python | py | Runtime Error | 0 | 0 | 65 | l=raw_input().split()
a=l[0]
b=l[1]
c=a*b
d=(a+b)*2
print c+" "+d |
s504301952 | p02389 | u418434817 | 1458995639 | Python | Python | py | Runtime Error | 0 | 0 | 74 | l=map(int,raw_input().split())
a=l[0]
b=l[1]
c=a*b
d=(a+b)*2
print c+" "+d |
s087663791 | p02389 | u418434817 | 1458995741 | Python | Python | py | Runtime Error | 0 | 0 | 77 | l = map(int, raw_input().split())
a=l[0]
b=l[1]
c=a*b
d=(a+b)*2
print c+" "+d |
s090505960 | p02389 | u402330988 | 1459677150 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a ,b = map(int(input().split()))
print a*b + ' ' + 2(*(a+b) |
s029269291 | p02389 | u013479944 | 1460682703 | Python | Python | py | Runtime Error | 0 | 0 | 29 | n=input()
m=input()
print n*m |
s318298291 | p02389 | u013479944 | 1460683227 | Python | Python | py | Runtime Error | 0 | 0 | 65 | n=map(int, raw_input().split())
print n[0]*n[1] " " n[0]*2+n[1]*2 |
s630059253 | p02389 | u512127035 | 1460986718 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | line = input().split(' ')
a = line[0]
b = line[1]
print(a*b 2*(a+b)) |
s603216192 | p02389 | u512127035 | 1460986767 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | line = input().split(' ')
a = int(line[0])
b = int(line[1])
print(a*b2*(a+b)) |
s832936407 | p02389 | u077284614 | 1461232727 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | a, b=int(map(input()))
print(a*b, a*2+b*2) |
s794582212 | p02389 | u077284614 | 1461233154 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a, b=map(int,input.split())
print(a*b, A*2+b*2) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.