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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s078003296 | p02389 | u967890409 | 1559005769 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | import sys
data=int(input())
data2=int(input())
print((data*data2), 2*(data+data2))
|
s525985565 | p02389 | u128955835 | 1559048998 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | a, b = map(int,input().split)
area = a * b
perimeter = (a + b) * 2
ptint(str(area) + ' ' + str(perimeter))
|
s085539028 | p02389 | u128955835 | 1559049023 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a, b = map(int,input().split())
area = a * b
perimeter = (a + b) * 2
ptint(str(area) + ' ' + str(perimeter))
|
s890232658 | p02389 | u535719732 | 1559185850 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a = int(input());
b = int(input());
print(a + " " + b);
|
s009604578 | p02389 | u535719732 | 1559185869 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print(a + " " + b)
|
s289679149 | p02389 | u535719732 | 1559185935 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | num = list(map(int,input().split()))
print(num[0] + " " + num[1])
|
s073317001 | p02389 | u150815241 | 1559207805 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print(2a+2b,' ',ab)
|
s023135447 | p02389 | u150815241 | 1559207907 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a = int(input())
b = int(input())
print(ab,' ',a+b+a+b)
|
s091760741 | p02389 | u150815241 | 1559207931 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a = int(input())
b = int(input())
print(2a+2b,ab)
|
s526396573 | p02389 | u150815241 | 1559208069 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b = int(input())
print(2a+2b,' ',ab)
|
s822296261 | p02389 | u464080148 | 1559337168 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a=int(input())
b=int(input())
print(a*b)
print(2*a+2*b)
|
s641266321 | p02389 | u378782793 | 1404036771 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a = raw_input()
b = raw_input()
print a*b, 2a+2b |
s754569205 | p02389 | u378782793 | 1404036890 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a = int(raw_input())
b = int(raw_input())
print a*b, 2*a+2*b |
s978794719 | p02389 | u378782793 | 1404036914 | Python | Python | py | Runtime Error | 0 | 0 | 65 | a = int(raw_input())
b = int(raw_input())
print a*b, (2*a)+(2*b) |
s228607984 | p02389 | u378782793 | 1404036979 | Python | Python | py | Runtime Error | 0 | 0 | 67 | a, b = (int(raw_input()), int(raw_input()))
print a*b, (2*a)+(2*b) |
s142221847 | p02389 | u378782793 | 1404037007 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a, b = (int(raw_input()), int(raw_input()))
print a*b, (2*a)+(2*b) |
s540931910 | p02389 | u451187291 | 1404562651 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a = input()
b = input()
print a*b |
s411588512 | p02389 | u296492699 | 1404722225 | Python | Python | py | Runtime Error | 0 | 0 | 79 | tmp=input()
a=int(tmp.split(' ')[0])
b=int(tmp.split(' ')[1])
print a*b,2*(a+b) |
s006856224 | p02389 | u296492699 | 1404722371 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a,b=map(int, input().split())
print a*b, 2*(a+b) |
s034530506 | p02389 | u579833671 | 1406961845 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a = int(input())
b = int(input())
print("%d %d" % (a * b, 2 * (a + b))) |
s510010578 | p02389 | u579833671 | 1406962160 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | n = raw_input()
print("%d %d" % (int(n[0]) * int(n[2]), 2 * (int(n[0]) + int(n[2])) )) |
s027159793 | p02389 | u579833671 | 1406962370 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | (a, b) = map(int, raw_input().split())
print("%d %d" % (a * b, 2 * (a + b))) |
s204571865 | p02389 | u579833671 | 1406962433 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | (a, b) = map(int, raw_input().split())
print str(a * b) + " " + str(2 * (a + b)) |
s493985771 | p02389 | u579833671 | 1406962524 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a, b = map(int, raw_input().split())
print str(a * b) + " " + str(2 * (a + b)) |
s447609742 | p02389 | u579833671 | 1406962600 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = map(int, raw_input().split())
print((a * b), 2 * (a + b)) |
s982369323 | p02389 | u579833671 | 1406963274 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = map(int, raw_input().split())
print((a * b), 2 * (a + b)) |
s590519736 | p02389 | u955279063 | 1408933686 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a, b = map(int, raw_input().split())
print a*b + " " + (a+b)*2 |
s989782368 | p02389 | u955279063 | 1408933866 | Python | Python | py | Runtime Error | 0 | 0 | 86 | list = map(int, raw_input().split())
a = list[0]
b = list[1]
print a*b + " " + (a+b)*2 |
s700590653 | p02389 | u018580670 | 1409209080 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a=input()
b=input()
print a*b
print 2*a+2*b |
s162747771 | p02389 | u018580670 | 1409209237 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a,b=input(),input()
print a*b
print 2*a+2*b |
s835751138 | p02389 | u018580670 | 1409209689 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a=list(input())
print a[0]*a[1]
print 2*a[0]+2*a[1] |
s788986458 | p02389 | u018580670 | 1409210263 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a = map(int, raw_input().split())
print a[0]*a[1] 2*a[0]+2*a[1] |
s116786187 | p02389 | u018580670 | 1409210272 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a = map(int, raw_input().split())
print a[0]*a[1] 2*a[0]+2*a[1] |
s321679643 | p02389 | u018580670 | 1409210312 | Python | Python | py | Runtime Error | 0 | 0 | 64 | a = map(int, raw_input().split())
print ,a[0]*a[1],2*a[0]+2*a[1] |
s823408390 | p02389 | u792834675 | 1415777945 | Python | Python | py | Runtime Error | 0 | 0 | 51 | x=raw_input().split()
print x[0]*x[1],(x[0]+x[1])*2 |
s084373159 | p02389 | u017764209 | 1416397941 | Python | Python | py | Runtime Error | 0 | 0 | 79 | x = raw_input()
a = int(x[0:1])
b = int(x[2:3])
print a*b + " " + ((a*2)+(b*2)) |
s240471850 | p02389 | u017764209 | 1416398293 | Python | Python | py | Runtime Error | 0 | 0 | 92 | x = raw_input()
a = int(x[0:1])
b = int(x[2:3])
aa = a*2 + b*2
bb = a*b
print bb + " " + aa |
s614706537 | p02389 | u017764209 | 1416399168 | Python | Python | py | Runtime Error | 0 | 0 | 91 | x = raw_input()
a = int(x[0:1])
b = int(x[2:3])
aa = a*2 + b*2
bb = a*b
print bb + " " + aa |
s144507201 | p02389 | u017764209 | 1416399393 | Python | Python | py | Runtime Error | 10 | 4196 | 101 | x = raw_input()
a = int(x[0:1])
b = int(x[2:3])
aa = a*2 + b*2
bb = a*b
print str(bb) + " " + str(aa) |
s267193952 | p02389 | u181540499 | 1417100326 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = [int(x) for x in input.split()]
print(a * b, 2 * (a + b)) |
s480885311 | p02389 | u580607517 | 1417358357 | Python | Python | py | Runtime Error | 0 | 0 | 122 | if __name__ == '__main__':
input_a = input()
input_b = input()
a = 2*input_a+2*input_b
b = input_a*input_b
print b, a |
s752030604 | p02389 | u580607517 | 1417358409 | Python | Python | py | Runtime Error | 0 | 0 | 126 | if __name__ == '__main__':
input_a = input()
input_b = input()
a = 2*input_a+2*input_b
b = input_a*input_b
print b," ", a |
s496904148 | p02389 | u580607517 | 1417358497 | Python | Python | py | Runtime Error | 0 | 0 | 126 | if __name__ == '__main__':
input_a = input()
input_b = input()
a = 2*input_a+2*input_b
b = input_a*input_b
print b," ", a |
s774391765 | p02389 | u580607517 | 1417358635 | Python | Python | py | Runtime Error | 0 | 0 | 113 | if __name__ == '__main__':
input_a = input()
input_b = input()
print input_a*input_b," ",2*input_a+2*input_b |
s967433863 | p02389 | u580607517 | 1417358703 | Python | Python | py | Runtime Error | 0 | 0 | 109 | if __name__ == '__main__':
input_a = input()
input_b = input()
print input_a*input_b,2*input_a+2*input_b |
s810298524 | p02389 | u580607517 | 1417358771 | Python | Python | py | Runtime Error | 0 | 0 | 79 | input_a = input()
input_b = input()
print input_a*input_b,2*input_a+2*input_b |
s647717623 | p02389 | u580607517 | 1417358809 | Python | Python | py | Runtime Error | 0 | 0 | 83 | input_a = input()
input_b = input()
print input_a*input_b," ",2*input_a+2*input_b |
s433689440 | p02389 | u580607517 | 1417359000 | Python | Python | py | Runtime Error | 0 | 0 | 87 | input_a = input()
input_b = input()
print (input_a*input_b, " ", 2*input_a+2*input_b) |
s931525043 | p02389 | u313839812 | 1417439567 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a, b = map(int, input().split(' '))
print(a*b, 2*(a+b)) |
s853215609 | p02389 | u313839812 | 1417439609 | Python | Python | py | Runtime Error | 0 | 0 | 67 | import sys
a, b = map(int, input().split(' '))
print(a*b, 2*(a+b)) |
s878835082 | p02389 | u615353970 | 1419158144 | Python | Python | py | Runtime Error | 0 | 0 | 142 | import sys
def solve():
for x in sys.stdin:
a,b = map(int,raw_input().split())
print a*b,2*a+2*b
if __name__ == "__main__":
solve() |
s831387834 | p02389 | u749493116 | 1420101432 | Python | Python | py | Runtime Error | 0 | 0 | 58 | #coding utf-8
x=input()
y=input()
print x*y
print 2*(y+x) |
s138839297 | p02389 | u749493116 | 1420105766 | Python | Python | py | Runtime Error | 0 | 0 | 65 | #coding utf-8
x,y = map(int, input().split())
print(x*y, 2*(x+y)) |
s132503318 | p02389 | u067975558 | 1421982054 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | params = input().rstrip().split('')
square = int(params[0]) * int(params[1])
length = (int(params[0]) + int(params[1])) * 2
print(square, length) |
s962941837 | p02389 | u204429063 | 1421982075 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | params = input().rstrip().split('')
square = int(params[0]) * int(params[2])
length = (int(params[0]) + int(params[1])) * 2
print(square, length) |
s168151932 | p02389 | u204429063 | 1421982188 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | params = input().rstrip().split('')
square = int(params[0]) * int(params[1])
length = (int(params[0]) + int(params[1])) * 2
print(square, length) |
s304575295 | p02389 | u527848444 | 1422236491 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = input().split(' ')
a = int(x[0)
b = int(x[1])
print((a * b), ((a + b) * 2)) |
s417021739 | p02389 | u527848444 | 1422236519 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = input().split(" ")
a = int(x[0)
b = int(x[1])
print((a * b), ((a + b) * 2)) |
s863769310 | p02389 | u442346200 | 1422236522 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = input().split(" ")
a = int(x[0])
b = int(x[1])
print((a * b), (a + b) * 2)) |
s534564864 | p02389 | u166912986 | 1422678707 | Python | Python | py | Runtime Error | 0 | 0 | 63 | n=int(raw_input())
k=int(raw_input())
s=n*k
l=2*(n+k)
print s,l |
s758997682 | p02389 | u166912986 | 1422678876 | Python | Python | py | Runtime Error | 0 | 0 | 66 | n, k =int(raw_input()), int(raw_input())
s=n*k
l=2*(n+k)
print s,l |
s285751838 | p02389 | u442472098 | 1422978059 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | a,b = input().split(" ")
print(a*b,2*(a+b)) |
s225456294 | p02389 | u442472098 | 1422978150 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | n = input().split(" ")
print(n[0]*n[1],2*(n[0]+n[1])) |
s337081463 | p02389 | u492556875 | 1424447237 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | import sys
(a, b) = [int(i) for i in sys.readline().split()]
print("%d %d" % (a * b, (a + b) * 2)) |
s993843093 | p02389 | u742797815 | 1424697616 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | x, y = map(int, read().split())
print(x*y, 2*(x+y)) |
s366715356 | p02389 | u137212517 | 1429271745 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a, b = input().split()
print(a * b, 2 * (a + b)) |
s834410516 | p02389 | u669360983 | 1430023436 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | x,y)=map(int, input().split(" "))
print(x * y, 2 * x + 2* y) |
s309457665 | p02389 | u506372503 | 1431932144 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a, b = map(int, input().split())
print(a*b, 2*(a+B)) |
s147228636 | p02389 | u555750476 | 1432107037 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,input().split())
3 5
print(a*b 2*a+2*b) |
s476098283 | p02389 | u555750476 | 1432107145 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a,b=map(int,input().split())
3 5
x=a*b
y=2*a+2*b
print(a b) |
s960796927 | p02389 | u062590758 | 1432107616 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b=map(int,input().split())
print(a b) |
s941628557 | p02389 | u555750476 | 1432108248 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,input().split())
3 5
print(a*b,2*a+2*b) |
s974321071 | p02389 | u555750476 | 1432108312 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a,b=map(int,input().split())
3 5
x=a*b
y=2*a+2*b
print(x,y)
|
s497203870 | p02389 | u555750476 | 1432108371 | Python | Python | py | Runtime Error | 0 | 0 | 53 | a,b=map(int,input().split())
3 5
print(a*b,2*a+2*b)
|
s259166623 | p02389 | u555750476 | 1432108384 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a,b=map(int,input().split())
3 5
print(a*b,2*a+2*b)
|
s069292324 | p02389 | u555750476 | 1432108509 | Python | Python | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input().split())
print(a*b,2*(a+b)) |
s356603301 | p02389 | u555750476 | 1432108529 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,input().split())
3 5
print(a*b,2*(a+b)) |
s181717133 | p02389 | u812648461 | 1432796061 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a,b = input(),input()
print str(a*b) + ' ' + str((a+b)*2) |
s318407203 | p02389 | u464218592 | 1434182056 | Python | Python | py | Runtime Error | 0 | 0 | 51 | x = int(raw_input())
y = int(raw_input())
print x*y |
s875061528 | p02389 | u172616925 | 1434627353 | Python | Python | py | Runtime Error | 0 | 0 | 54 | import sys
a = sys.argv[1]
b = sys.argv[2]
print a*b |
s172435372 | p02389 | u172616925 | 1434628389 | Python | Python | py | Runtime Error | 0 | 0 | 74 | l = map(int, input().split())
a = l[0]*l[1]
b = (l[0]+l[1])*2
print(a b) |
s966191810 | p02389 | u172616925 | 1434628544 | Python | Python | py | Runtime Error | 0 | 0 | 78 | l = map(int, raw_input().split())
a = l[0]*l[1]
b = (l[0]+l[1])*2
print(a b) |
s958476189 | p02389 | u255164080 | 1436145550 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | nums = input(3).split(5)
a = int(nums[0])
b = int(nums[1])
print(a * b,(a + b) * 2) |
s813924595 | p02389 | u467309160 | 1436145553 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | nums = input().split()
a = int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*???) |
s063793833 | p02389 | u686134343 | 1436145559 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | nums = input().split()
a - int(numus[0])
b = int(numus[1])
print(a*b,(a+b)*2) |
s298548482 | p02389 | u447630054 | 1436145577 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | nums = input().split()
a = int(nums[0])
b = int(num[1])
print(a * b,(a+b)*2) |
s160245671 | p02389 | u686134343 | 1436145608 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | nums = input().split()
a - int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) |
s746433994 | p02389 | u763673519 | 1436145660 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | nums = input().sprit()
a = int(nums[0])
b = int(nums[1])
print(a * b,(a + b) * 2) |
s084824686 | p02389 | u686134343 | 1436145692 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | nums = input().split()
a - int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) |
s568461854 | p02389 | u335511832 | 1436145712 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x = int().split()
a = int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) |
s305135438 | p02389 | u255164080 | 1436145723 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | nums=input(3).split(5)
a=int(nums[0])
b=int(nums[1])
print(a*b,(a+b)*2) |
s539609965 | p02389 | u686134343 | 1436145776 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | nums = input().split()
a - int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) |
s716053952 | p02389 | u255164080 | 1436145849 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | nums = input(a).split(b)
a = int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) |
s051618526 | p02389 | u763673519 | 1436146076 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | nums = input().sprit()
a = int(nums[0])
b = int(nums[1])
print(a * b,(a + b) * 2) |
s761720755 | p02389 | u335511832 | 1436146267 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | x = input().split()
a = (nums[0])
b = (nums[1])
print(a*b,(a+b)*2) |
s553994052 | p02389 | u335511832 | 1436146465 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | atai = input().split()
a = (atai[0])
b = (atai[1])
print(a*b,(a+b)*2) |
s409761606 | p02389 | u484576700 | 1436445962 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a,b = map(int,raw_input.split())
print a * b (a + b) * 2 |
s652346497 | p02389 | u802705119 | 1436527815 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #include <stdio.h>
int main(void) {
int x;
scanf("%d", &x);
printf("%d\n", x*x*x);
return 0;
} |
s689654765 | p02389 | u050030500 | 1436685401 | Python | Python | py | Runtime Error | 0 | 0 | 87 | #!/usr/bin/python
# -*- coding: utf-8 -*-
a,b = input()
print "%d %d"% (a*b, 2*(a+b)) |
s393079731 | p02389 | u669360983 | 1437551331 | Python | Python | py | Runtime Error | 0 | 0 | 80 | s=int(raw_input())
h=s/3600
m=(s-3600*h)/60
print "%d:%d:%d"%(h,m,s-3600*h-60*m) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.