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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s226605865 | p02389 | u721103753 | 1497507251 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a = input()
b = input()
print(int(a) * int(b) + ' ' + int(a) * 2 + int(b) * 2) |
s584139232 | p02389 | u027278270 | 1497507261 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | [a,b] = int(input()).split
c = a*b
d = a*2 + b*2
print(c d) |
s794629906 | p02389 | u658089986 | 1497507286 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x=input().split()
a = x[0]
b = x[1]
print(a*b,end=' ')
print(a*2+b*2) |
s150376223 | p02389 | u486972540 | 1497507291 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = int(input())
b = int(input())
print(a*b)
print((a+b)*2) |
s074558201 | p02389 | u333596716 | 1497507300 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a = int(input())
b = int(input())
menseki = a*b
nagasa = a+a+b+b
print(menseki,nagasa) |
s214875266 | p02389 | u698693989 | 1497507341 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a,b = int(input())
print(a*b,a*2+b*2) |
s521386543 | p02389 | u658089986 | 1497507342 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | x=input().split()
a = x[0]
b = x[1]
print( a*b +' '+ a*2+b*2 ) |
s342074783 | p02389 | u565553603 | 1497507351 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | #?????? a cm ?????? b cm ???????????¢?????¢?????¨??¨?????????????±???????????????°?????????????????????????????????
x = int(a + a)
y = int(b + b)
print int(x + y) |
s793819100 | p02389 | u478810373 | 1497507377 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a = int(input())
b = int(input())
print((a*b) (a+b)*2) |
s648628855 | p02389 | u486972540 | 1497507393 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = int(input())
b = int(input())
print(a*b)
print((a+b)*2) |
s718703202 | p02389 | u692161606 | 1497507398 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a = int(input())
b = int(input())
a * b
(a + b) * 2 |
s339545238 | p02389 | u818923713 | 1497507412 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print((a * b)* 2)) |
s168067266 | p02389 | u410114382 | 1497507460 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a,b[int(x) for x in input().split()]
print(a*b,(a+b)*2) |
s040390903 | p02389 | u169794024 | 1497507469 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input(),split())
print(a*b,(a+b)*2) |
s759865795 | p02389 | u658089986 | 1497507487 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | x=input().split()
a = int(x[0])
b = int(x[1])
print( a*b +' '+ a*2+b*2 ) |
s426682591 | p02389 | u565553603 | 1497507536 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 | print int(a * b) |
s141279032 | p02389 | u721103753 | 1497507569 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | [a, b] = [int(input()) for _ in range(2)]
print(a * b + ' ' + (a + b) * 2) |
s997587504 | p02389 | u721221949 | 1497507570 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | [a, b] = map(int, input().split())
print(a*b + " " + (a+b)*2) |
s445786485 | p02389 | u698693989 | 1497507603 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | a,b=int(input()).split()
print(a*b,a*2+b*2) |
s504695618 | p02389 | u027278270 | 1497507624 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input())
b = int(input())
c = a*b
d = (a*2)+(b*2)
print(c,d) |
s609421561 | p02389 | u333596716 | 1497507718 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a,b = int(input())
print(a+b,(a+b)*2) |
s396427146 | p02389 | u721103753 | 1497507781 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | [a, b] = [int(_) for _ in input().split()]
print(a * b + ' ' + (a + b) * 2) |
s295480503 | p02389 | u333596716 | 1497507798 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print((a+b),(a+b)*2) |
s270313651 | p02389 | u658089986 | 1497507809 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | 1 x=input().split()
2 a = int(x[0])
3 b = int(x[1])
4
5 print( a*b , a*2+b*2 )
6 |
s395686182 | p02389 | u569585396 | 1497507855 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | (a, b) = int(input()).split()
print("a * b" + " " + "a * 2 + a * 2") |
s860979134 | p02389 | u698693989 | 1497507917 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b = int(input()).split
print(a*b," "a*2+b*2) |
s006982443 | p02389 | u623827446 | 1497507981 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | x=str(input())
n='x'.split(" ", 2)
a=n[0]
b=n[1]
ab=a*b
a_b=(a+b)*2
print('ab',end=' ')
print('a_b') |
s700309661 | p02389 | u569585396 | 1497508013 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | (a, b) = [int(i) for i in input().split]
print(a * 2, (a + b) * 2) |
s285085910 | p02389 | u333596716 | 1497508130 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print sprit((a+b),(a+b)*2) |
s123035641 | p02389 | u569585396 | 1497508236 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | i = input().split()
a = input(x[1])
b = input(x[-1])
print(a*b, (a+b)*2) |
s189042118 | p02389 | u569585396 | 1497508288 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | i = input().split()
a = int(x[1])
b = int(x[-1])
print(a*b, (a+b)*2) |
s701014704 | p02389 | u698693989 | 1497508302 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | x=input().split
y=map(int,x)
a=y[0]
b=y[1]
c=a*b
d=(a+b)*2
print c, d |
s773192091 | p02389 | u623827446 | 1497508350 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | x=str(input())
n=x.split(" ", 2)
a=n[0]
b=n[1]
ab=a*b
a_b=(a+b)*2
print('ab', end=' ')
print('a_b') |
s675232431 | p02389 | u569585396 | 1497508384 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | i = input().split()
a = int(x(1))
b = int(x(-1))
print(a*b, (a+b)*2) |
s517160599 | p02389 | u486972540 | 1497508400 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | a,b = int(input())
print(a*b)
print((a+b)*2) |
s884916192 | p02389 | u363648401 | 1497508402 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a.b=[int(i) for i in input().split()]
print(a*b (a+b)*2) |
s479501402 | p02389 | u698693989 | 1497508437 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | x=int(input()).split
a=x[0]
b=x[1]
c=a*b
d=(a+b)*2
print c, d |
s744353884 | p02389 | u818923713 | 1497508481 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | x = ( a * b ) * 2
z = ( a / x ) or ( b / x )
print( x, z ) |
s082445090 | p02389 | u569585396 | 1497508482 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | x = input().split()
a = int(x(0))
b = int(x(0))
print(a*b, (a+b)*2) |
s693907883 | p02389 | u363648401 | 1497508542 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a.b=int(i) for i in input().split()]
print(a*b.a+a+b+b) |
s688677517 | p02389 | u333596716 | 1497508589 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = int(input())
b = int(input())
menseki = a*b
nagasa = (a+b)*2
print mensaki,nagasa.split() |
s656981328 | p02389 | u333596716 | 1497508658 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = int(input())
b = int(input())
menseki = a*b
nagasa = (a+b)*2
print mensaki.nagasa.split() |
s026742277 | p02389 | u486972540 | 1497508693 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a,b = [int(i) for i in input().split()]
print(a*b)
print((a*2+b*2) |
s422726601 | p02389 | u333596716 | 1497508770 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input()split())
b = int(input()split())
print((a*b),(a+b*2)) |
s331707273 | p02389 | u333596716 | 1497508901 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input()split())
b = int(input()split())
print((a*b),(a+b)*2) |
s914287578 | p02389 | u818923713 | 1497508906 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a,b = [int x for in input().split()]
print( a * b,(a * b ) * 2) |
s619377944 | p02389 | u333596716 | 1497508979 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a = int(input().split())
b = int(input().split())
print((a*b),(a+b)*2) |
s606253475 | p02389 | u333596716 | 1497509346 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input().split())
b = int(input().split())
print(a*b,(a+b)*2) |
s040387119 | p02389 | u923630348 | 1497509364 | Python | Python3 | py | Runtime Error | 0 | 0 | 10 | a,b=[input |
s236265956 | p02389 | u692161606 | 1497509377 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a, b] = int(input()).split()
print(a*b, (a+b)*2) |
s040761224 | p02389 | u831971779 | 1497509418 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | [a,b] = map(int,input().split())
print(a*b a*2+b*2) |
s427422472 | p02389 | u333596716 | 1497509428 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = (int,input().split())
b = (int,input().split())
print((a*b),(a+b)*2) |
s409325261 | p02389 | u776018831 | 1497509537 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | #?????? a cm ?????? b cm ???????????¢?????¢?????¨??¨?????????????±???????????????°?????????????????????????????????
a,b=map(int,input(),split())
print(a*b,(a+b)*2) |
s269288409 | p02389 | u776018831 | 1497509899 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | #?????? a cm ?????? b cm ???????????¢?????¢?????¨??¨?????????????±???????????????°?????????????????????????????????
a,b=map(int,input(),split())
print(a*b,(a+b)*2) |
s370152878 | p02389 | u831971779 | 1497510077 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a,b]=map(int,input(),split())
print(a*b,a*2+b*2) |
s913147551 | p02389 | u831971779 | 1497510181 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a,b]=map(int,input(),split())
print(a*b,a*2+b*2) |
s348726014 | p02389 | u831971779 | 1497510253 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a,b]=map(int,input(),split())
print(a*b,(a+b)*2) |
s294960442 | p02389 | u831971779 | 1497510313 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a,b]=map(int,input(),split())
print(a*b,(a+b)*2) |
s531042561 | p02389 | u831971779 | 1497510374 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input(),split())
print(a*b,(a+b)*2) |
s643596091 | p02389 | u831971779 | 1497510979 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | [a,b] = map(int,input(),split())
print(a*b,(a+b)*2) |
s101170196 | p02389 | u692161606 | 1497511628 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | [a, b] = map(int(input().split()))
print(a * b,(a + b) * 2) |
s940783737 | p02389 | u565553603 | 1497511655 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b = (int[input.split])
print (a * b,(a + b) * 2) |
s037002296 | p02389 | u565553603 | 1497511842 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b=int(input(),split())
print (a * b,(a + b) * 2) |
s958947943 | p02389 | u451779396 | 1497513127 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 |
[a,b]=input(),split() |
s420610120 | p02389 | u627002197 | 1497609929 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | #????????§??\????????\??????????????????
list1 = [int(i) for i in input().split()]
print("{0} {1}",.format(list1[0]+list[1],list1[0]*list1[1]) |
s846627052 | p02389 | u627002197 | 1497609954 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | #????????§??\????????\??????????????????
list1 = [int(i) for i in input().split()]
print("{0} {1}",.format(list1[0]+list[1],list1[0]*list1[1])) |
s916888743 | p02389 | u627002197 | 1497609996 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | #????????§??\????????\??????????????????
list1 = [int(i) for i in input().split()]
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2)) |
s698205144 | p02389 | u627002197 | 1497610033 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | list1 = [int(i) for i in input().split()]
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2)) |
s396986772 | p02389 | u627002197 | 1497610053 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | #list1 = [int(i) for i in input().split()]
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2)) |
s746798643 | p02389 | u627002197 | 1497610156 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | list1 = [int(i) for i in input().split()]
print("{0} {1}".format(list[0],list[1])) |
s792480661 | p02389 | u627002197 | 1497610193 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | list1 = [int(i) for i in input().split()]
print("{0:d} {1:d}".format(list[0],list[1])) |
s639374495 | p02389 | u627002197 | 1497610370 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | list1 = [int(i) for i in input().split()]
print(list[0]) |
s792085824 | p02389 | u627002197 | 1497610386 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | list1 = [int(i) for i in input().split()]
print("{0}".format(list[0])) |
s390610633 | p02389 | u627002197 | 1497610402 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | list1 = [int(i) for i in input().split()]
print(list[0]) |
s818387773 | p02389 | u627002197 | 1497610412 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | list1 = [int(i) for i in input().split()]
print(int(list[0])) |
s360516113 | p02389 | u627002197 | 1497610537 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | item = [int(i) for i in input().split()]
print(item[0]*item[1]+" ") |
s159525460 | p02389 | u627002197 | 1497610585 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | item = [int(i) for i in input().split()]
print(item[0]*item[1]+" "+2*(item[0]+item[1])) |
s714265527 | p02389 | u200401481 | 1497806438 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | x = map(int,input().split())
print(str(x[0]*x[1])+" "+str(2*x[0]+2*x[1])) |
s445136704 | p02389 | u386861275 | 1497889526 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a=int(input())
b=int(input())
print(a*b,end=" ")
print((a+b)*2) |
s643919217 | p02389 | u451779396 | 1498030147 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 |
[a,b]=input(),split |
s198988685 | p02389 | u079986660 | 1498031168 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = int(input())
b = int(input())
print(a*b)
print((a*2)(b*2)) |
s339308694 | p02389 | u079986660 | 1498031184 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a = int(input())
b = int(input())
print(a*b)
print((a*2)+(b*2)) |
s771208228 | p02389 | u079986660 | 1498031230 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print(a*b)
print(a*2+b*2) |
s148307854 | p02389 | u079986660 | 1498031358 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print(a*b)(a*2+b*2) |
s206725066 | p02389 | u079986660 | 1498031493 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a = int(input())
b = int(input())
print((a*b),(a*2+b*2)) |
s268973225 | p02389 | u079986660 | 1498031658 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a = int(input())
b = int(input())
print(a*b) (a*2+b*2) |
s548916373 | p02389 | u504760777 | 1498037023 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a = input()
b = input()
print(a * b 2 * a + 2 * b) |
s593512019 | p02389 | u354053070 | 1498246229 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | l = input().split
a, b = list(map(int, l))
print(a * b, 2 * (a + b)) |
s563253557 | p02389 | u729486845 | 1498570384 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | input_raw = input()
input_data = input_raw.split(' ')
s=input_data[0]*input_data[1]
x=input_data[0]*2+input_data[1]*2
print(string(s) & " " & string(x)) |
s597633431 | p02389 | u729486845 | 1498570547 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | inputRaw=input()
inputData=inputRaw.split(' ')
s=inputData[0]*inputData[1]
x=(inputData[0]+inputData[1])*2
print(str(s)+" "+str(x)) |
s517770905 | p02389 | u729486845 | 1498570589 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | inputRaw=input()
inputData=inputRaw.split(' ')
s=inputData[0]*inputData[1]
x=(inputData[0]+inputData[1])*2
print(str(s)&" "&str(x)) |
s741630981 | p02389 | u257897291 | 1498657877 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a = int(input())
b = int(input())
print(a*b,(a+b)*2) |
s358633547 | p02389 | u029473859 | 1498773282 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | input_lines = input()
input_i = input_lines.sprit()
print(input_i[0]*input_[1])
print(input_i[0]*2 + input_[1]*2) |
s625297968 | p02389 | u067677727 | 1498789854 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import sys
a, b = list(map(int, sys.stdin.readline(),split()))
print(a*b, 2*a+2*b) |
s691878757 | p02389 | u299798926 | 1498795376 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | x=int(input())
y=int(input())
s=x*y
l=2*x+2*y
print(s," ",l) |
s628665162 | p02389 | u299798926 | 1498795492 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | x,y=int(input().split())
s=x*y
l=2*x+2*y
print(s," ",l) |
s829394619 | p02389 | u299798926 | 1498795823 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | x=int(input().split())
s=x[0]*x[1]
l=2*x[0]+2*x[1]
print("{0} {1}",format(x[0],x[1])) |
s952921520 | p02389 | u340500592 | 1498970390 | Python | Python | py | Runtime Error | 0 | 0 | 140 | if __name__ == '__main__':
a, b = map(int, raw_input().split())
area = a * b
circumference = 2*a + 2*b
print(area + ' ' + circumference) |
s927529208 | p02389 | u340500592 | 1498970422 | Python | Python | py | Runtime Error | 0 | 0 | 109 | a, b = map(int, raw_input().split())
area = a * b
circumference = 2*a + 2*b
print(area + ' ' + circumference) |
s006746557 | p02389 | u340500592 | 1498970499 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | a, b = input().split())
area = a * b
circumference = 2*a + 2*b
print(area + ' ' + circumference) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.