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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s745304602 | p02389 | u314018844 | 1484659346 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | a = int(input())
b = int(input())
if 1<=a and a<= 100 and 1<=b and b<=100:
area = a*b
cir = (a+b)*2
print(area,cir)
else:
print("Error!") |
s177032940 | p02389 | u314018844 | 1484659403 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a = int(input())
b = int(input())
area = a*b
cir = (a+b)*2
print(area,cir) |
s369335849 | p02389 | u314018844 | 1484659869 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = int(input())
b = int(input())
area = a*b
cir = (a+b)*2
print(area, cir) |
s392719054 | p02389 | u276050131 | 1484757684 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | l = map(int,input().split)
print(l[0] * l[1])
print(l[0] * 2 + l[1] * 2) |
s276710291 | p02389 | u276050131 | 1484757754 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | l = map(int,input().split)
print(l[0] * l[1])
print( l[0] * 2 + l[1] * 2) |
s511494951 | p02389 | u276050131 | 1484757766 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | l = map(int,input().split)
print(l[0] * l[1])
print(" " + l[0] * 2 + l[1] * 2) |
s858230128 | p02389 | u276050131 | 1484757837 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | l = map(int,input().split())
print(l[0] * l[1])
print(l[0] * 2 + l[1] * 2) |
s222716435 | p02389 | u276050131 | 1484758038 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | l = map(int,raw_input().split())
print(l[0] * l[1], l[0] * 2 + l[1] * 2) |
s321345224 | p02389 | u276050131 | 1484758210 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | l = map(int,raw_input().split())
s = l[0] * l[1]
shu = l[0] * 2 + l[1] * 2
print(str(s) + " " + str(shu)) |
s305283028 | p02389 | u276050131 | 1484758245 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | l = map(int,raw_input().split())
s = l[0] * l[1]
shu = l[0] * 2 + l[1] * 2
print(s + " " + shu) |
s019322029 | p02389 | u276050131 | 1484758535 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | l = map(int,raw_input().split())
s = l[0] * l[1]
shu = l[0] * 2 + l[1] * 2
fmt = "{s} {shu}"
s = fmt.format(s = s,shu = shu)
print(s) |
s774009258 | p02389 | u276050131 | 1484758868 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | a = map(int,raw_input().split())
s = l[0] * l[1]
shu = l[0] * 2 + l[1] * 2
fmt = "{s} {shu}"
s = fmt.format(s = s,shu = shu)
print(s) |
s593612413 | p02389 | u276050131 | 1484759069 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | a,b = map(int,raw_input().split())
s = a * b
shu = a * 2 + b * 2
fmt = "{s} {shu}"
s = fmt.format(s = s,shu = shu)
print(s) |
s678783008 | p02389 | u276050131 | 1484759086 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | a,b = map(int,raw_input().split())
s = a * b
shu = a * 2 + b * 2
fmt = "{s} {shu}"
s = fmt.format(s = s,shu = shu)
print(s) |
s953230754 | p02389 | u276050131 | 1484759342 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a,b = input().split()
s = a * b
shu = a * 2 + b * 2
fmt = "{s} {shu}"
s = fmt.format(s = s,shu = shu)
print(s) |
s124536699 | p02389 | u276050131 | 1484759353 | Python | Python | py | Runtime Error | 0 | 0 | 110 | a,b = input().split()
s = a * b
shu = a * 2 + b * 2
fmt = "{s} {shu}"
s = fmt.format(s = s,shu = shu)
print(s) |
s111702190 | p02389 | u133610255 | 1484829720 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | i = map(int, raw_input().split())
x = i[0] * i[1]
y = (i[0] + i[1]) * 2
print(x y) |
s349980496 | p02389 | u133610255 | 1484829738 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | i = map(int, raw_input().split())
x = i[0] * i[1]
y = (i[0] + i[1]) * 2
print(x+ " "+ y) |
s730240852 | p02389 | u133610255 | 1484829941 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | i = map(int, raw_input().split())
x = i[0] * i[1]
y = (i[0] + i[1]) * 2
z = " ".join([x,y]);
print(z) |
s201960840 | p02389 | u314018844 | 1484958573 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a = int(input())
b = int(input())
if 1<=a and a<= 100 and 1<=b and b<=100:
area = a*b
cir = (a+b)*2
print(area, cir) |
s792323951 | p02389 | u314018844 | 1484958739 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | a = int(input())
b = int(input())
if 1<=a and a<= 100 and 1<=b and b<=100:
area = a*b
cir = (a+b)*2
print(area, cir)
else:
print("error") |
s182707078 | p02389 | u519227872 | 1485260641 | Python | Python | py | Runtime Error | 0 | 0 | 87 | a,b = raw_input().split(" ")
a = int(a)
b = int(b)
print str(a*b) + " " str(2*a + 2*b) |
s803433365 | p02389 | u104171359 | 1485925671 | Python | Python3 | py | Runtime Error | 0 | 0 | 175 | #!usr/bin/env python3
def rect(a, b):
return str(a*b) + ' ' + str((a+b)*2)
def main():
print(rect(int(input()), int(input())))
if __name__ == '__main__':
main() |
s840691072 | p02389 | u104171359 | 1485925810 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | print(str(a*b) + ' ' str((a+b)*2)) |
s934513073 | p02389 | u048361305 | 1486367385 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x,y=map(int,input(),split())
print(a*b,a*2+b*2) |
s784316670 | p02389 | u048361305 | 1486367471 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x,y=map(int,input().split())
print(x*b,x*2+y*2) |
s535688968 | p02389 | u731896389 | 1486387097 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | x=int(input())
y=int(input())
print(x*y) |
s879755332 | p02389 | u644708764 | 1486476773 | Python | Python | py | Runtime Error | 0 | 0 | 70 | l=raw_input().split(" ")
a,b=int(l[0]),int(l[1])
print a*b+" "+2*a+2*b |
s041013566 | p02389 | u052758509 | 1486710454 | Python | Python | py | Runtime Error | 0 | 0 | 214 | def area(ls):
return ls[0] * ls[1]
def per(ls):
return (2 * ls[0]) + (2 * ls[1])
if __name__ == '__main__':
data = list(map(int, input().split()))
s = area(data)
l = per(data)
print(s, l) |
s818365576 | p02389 | u158308386 | 1487079489 | Python | Python3 | py | Runtime Error | 0 | 0 | 174 | input_str = input()
split_list = input_str.split()
print((int(split_list[0]) * int(split_list[1]),)
print(" ",)
print((int(split_list[0]) * 2 + int(split_list[1]) * 2))
|
s437983617 | p02389 | u158308386 | 1487079630 | Python | Python3 | py | Runtime Error | 0 | 0 | 161 | input_str = input()
split_list = input_str.split()
print((int(split_list[0]) * int(split_list[1]),)
print((int(split_list[0]) * 2 + int(split_list[1]) * 2))
|
s497209004 | p02389 | u158308386 | 1487079928 | Python | Python3 | py | Runtime Error | 0 | 0 | 152 | input_str = input()
split_list = input_str.split()
print((int(split_list[0]) * int(split_list[1]),(int(split_list[0]) * 2 + int(split_list[1]) * 2))
|
s816507142 | p02389 | u548155360 | 1487144887 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a,b = int(input().split())
M = a * b
print(M) |
s270699289 | p02389 | u548155360 | 1487144939 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a,b = int(input()).split()
M = a * b
print(M) |
s151845916 | p02389 | u548155360 | 1487144971 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | a,b = input().split()
M = a * b
print(M) |
s053891710 | p02389 | u548155360 | 1487145004 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | a, b = input().split()
M = a * b
print(M) |
s302166262 | p02389 | u726789377 | 1487320607 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | data = input().split()
a = data[0]
b = data[1]
print (int(a) * int(b), 2 * (int(a) + int (b)) |
s081134996 | p02389 | u024715419 | 1487921323 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | l = input().split()
print(int(l[0])*int(l[1]),2*int(l[0])+2*int(l[1]) |
s059816583 | p02389 | u024715419 | 1488123285 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | ab=input()
print(ab[0]*ab[1],ab[0]*2+ab[1]*2) |
s502496870 | p02389 | u775160104 | 1488186601 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | (a, b) = list(map(int, input().split())
print (a*b, 2(a+b)) |
s930209271 | p02389 | u511962207 | 1488234932 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a0 = input()
b0 = input()
a = float(a0)
b = float(b0)
s=a*b
l=2*a+2*b
print(s l) |
s715854564 | p02389 | u511962207 | 1488234950 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a0 = input()
b0 = input()
a = int(a0)
b = int(b0)
s=a*b
l=2*a+2*b
print(s l) |
s303218918 | p02389 | u511962207 | 1488234974 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a0 = input()
b0 = input()
a = int(a0)
b = int(b0)
s=a*b
l=2*a+2*b
print(s +l) |
s803300368 | p02389 | u511962207 | 1488235567 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a,b = n(int, input(), split())
s=a*b
l=2*a+2*b
print(s +l) |
s371152651 | p02389 | u511962207 | 1488235669 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a0, b0 = input(), input()
a = int(a0)
b = int(b0)
??
s=a*b
l=2*a+2*b
print(s +l) |
s902117471 | p02389 | u523743252 | 1488326092 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | input = list(map(int, input().split(' '))
a = input[0]
b = input[1]
x = a * b
y = (a + b) * 2
print("{} {}".format(a, b)) |
s995637886 | p02389 | u523743252 | 1488326124 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | input = list(map(lambda n: int(n), input().split(' '))
a = input[0]
b = input[1]
x = a * b
y = (a + b) * 2
print("{} {}".format(a, b)) |
s950871483 | p02389 | u746987146 | 1488333894 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a = int(raw_input())
b = int(raw_input())
print a*b,a*2+b*2 |
s319127718 | p02389 | u746987146 | 1488333988 | Python | Python | py | Runtime Error | 0 | 0 | 79 | s = raw_input().rstrip.split(" ")
a = int(s[0])
b = int(s[1])
print a*b,a*2+b*2 |
s621285694 | p02389 | u156091054 | 1488675593 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a, b = map(int, input(),split())
print(a*b, a*2 + b*2) |
s216866341 | p02389 | u868716420 | 1488923760 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a, b = [temp for temp in input().split()]
print(a * b, (a + b) * 2) |
s392474796 | p02389 | u209889426 | 1489668122 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | x=int(input())
y=int(input())
ans=2*x+2*y
print(ans) |
s422307372 | p02389 | u209889426 | 1489668294 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | x=int(input())
y=int(input())
ans=2*x+2*y
print(ans) |
s653410665 | p02389 | u209889426 | 1489668418 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | x=int(input())
y=int(input())
S=x*y
L=2*x+2*y
print(S)
print(L) |
s417102333 | p02389 | u209889426 | 1489668579 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | x=int(input())
y=int(input())
S=x*y
L=2*x+2*y
print(S,end = "")
print(L) |
s977796347 | p02389 | u275742248 | 1489757956 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a, b = input().split(' ')
print('{} {}'.format(a*b, 2(a+b))) |
s997162006 | p02389 | u275742248 | 1489758318 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x, y = map(int, input().split(' '))
print('{} {}'.format(a*b, 2(a+b))) |
s662300249 | p02389 | u275742248 | 1489758396 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a, b = map(int, input().split(' '))
print('{} {}'.format(a*b, 2(a+b))) |
s789936515 | p02389 | u011621222 | 1489923600 | Python | Python | py | Runtime Error | 0 | 0 | 70 | a=input()
b=input()
print a*b,2*(a+b)
#jdjdjdjdjdksksowksakslslakslaks |
s794668498 | p02389 | u011621222 | 1489924191 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a,b=input().split()
aa=int(a)
bb=int(b)
print aa*bb,2*(aa+bb) |
s817152953 | p02389 | u249954942 | 1490343904 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | x, y = [int(i) for i in input.split(" ")]
print(x*y) |
s552950738 | p02389 | u249954942 | 1490344239 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | input = [iint(i) for i in input().split(" ")]
print(input[0]*input[1], input[0]*2+input[1]*2) |
s074717450 | p02389 | u249954942 | 1490344362 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | x,y = [int(i) for i in input().split()]
area = x*y
length = (x*2)+(y*2)
print(area+" "+length) |
s637096596 | p02389 | u042882066 | 1490661989 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | items=int(input())
x,y=map(split( ), items)
a=x*y
b=2*x+2*y
print(a,b) |
s396155306 | p02389 | u042882066 | 1490661990 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | items=int(input())
x,y=map(split( ), items)
a=x*y
b=2*x+2*y
print(a,b) |
s603003731 | p02389 | u042882066 | 1490662286 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a,b=map(int, input().split(" ")
area=a*b
perimeter=2*(a+b)
print(area, perimeter) |
s291647382 | p02389 | u042882066 | 1490662286 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a,b=map(int, input().split(" ")
area=a*b
perimeter=2*(a+b)
print(area, perimeter) |
s659718613 | p02389 | u042882066 | 1490662344 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a, b = map(int, input().split( )
area = a*b
perimeter = 2*(a+b)
print(area, perimeter) |
s605569464 | p02389 | u822442916 | 1490748587 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | a,b=int(input())
print(a*b,(a+b)*2) |
s207843255 | p02389 | u822442916 | 1490749327 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a=int(input())
b=int(input())
print(a*b,(a+b)*2) |
s865714663 | p02389 | u462831976 | 1490772910 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a, b = list(map(int, input().split())
s = a * b
l = 2 * a + 2 * b
print(s, l) |
s537040424 | p02389 | u606989659 | 1490780557 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = int(input())
b = int(input())
if 1 <= a <= 100 1 <= b <= 100:
c = a * b
print(c) |
s482103550 | p02389 | u606989659 | 1490780763 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | a = int(input())
b = int(input())
if 1 <= a <= 100 and 1 <= b <= 100:
c = a * b
d = 2(a + b)
print(c''d) |
s865947201 | p02389 | u606989659 | 1490781135 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | x = input()
a, b = x.split()
if 1 <= a <= 100 and 1 <= b <= 100:
c = a * b
d = 2(a + b)
print(c''d) |
s753555130 | p02389 | u606989659 | 1490785930 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a,b = map(int,input().split())
c = a * b
d = 2(a + b)
print(c''d) |
s614251552 | p02389 | u606989659 | 1490786269 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a,b = map(int,input().split())
c = a * b
d = 2 * (a + b)
print(str(c)''str(d) ) |
s668001769 | p02389 | u300641790 | 1490795745 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b = int(input().split())
S = a*b
L = 2*(a+b)
print(x,y) |
s548814636 | p02389 | u300641790 | 1490795811 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b = int(input().split())
S = a*b
L = 2*(a+b)
print(x y) |
s733054442 | p02389 | u300641790 | 1490795933 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a,b = int(input().split())
S = a*b
L = 2*(a+b)
print('S' + 'L') |
s394963341 | p02389 | u300641790 | 1490796024 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a,b = int(input().split())
S = a*b
L = 2*(a+b)
print(S,end='')
print(L) |
s054406084 | p02389 | u300641790 | 1490796054 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a,b = int(input().split())
S = a*b
L = 2*(a+b)
print(S,end="")
print(L) |
s161277126 | p02389 | u822442916 | 1490923978 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | h=[a,b]
map(int(input(),h))
print(a*b,(a+b)*2)
|
s299501229 | p02389 | u822442916 | 1490926932 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a,b=map(int,input().split)
print(a*b,(a+b)*2) |
s675660298 | p02389 | u382692819 | 1491202407 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | import sys
args = sys.argv
a=int(args[1])
b=int(args[2])
print (a*b,a*2+b*2) |
s982954005 | p02389 | u382692819 | 1491210801 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import sys
a=sys.argv[1]
b=sys.argv[2]
def int(a,b):
return a*2+b*2,a*b
print(int(a,b)) |
s999853886 | p02389 | u382692819 | 1491210900 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | import sys
a=sys.argv[1]
b=sys.argv[2]
print(a*2+b*2,a*b) |
s897186513 | p02389 | u382692819 | 1491211009 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | import sys
a=sys.argv[1]
b=sys.argv[2]
print(a*b,a*2+b*2) |
s786676936 | p02389 | u382692819 | 1491211114 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | import sys
args = sys.argv
a=int(args[1])
b=int(args[2])
print(a,b) |
s741293687 | p02389 | u382692819 | 1491211401 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import sys
argvs = sys.argv
a=int(argvs[1])
b=int(argvs[2])
print(a*b,a*2+b*2) |
s334409774 | p02389 | u382692819 | 1491211804 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import sys
argvs = sys.argv
a=int(argvs[1])
b=int(argvs[2])
print(a*b,a*2+b*2) |
s319855499 | p02389 | u382692819 | 1491211832 | Python | Python | py | Runtime Error | 0 | 0 | 78 | import sys
argvs = sys.argv
a=int(argvs[1])
b=int(argvs[2])
print(a*b,a*2+b*2) |
s606252608 | p02389 | u395334793 | 1491539695 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | x = int(input())
y = int(input())
print(x*y,2*(x+y)) |
s986915999 | p02389 | u222861595 | 1491585366 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | a*b 2*(a + b) |
s579138417 | p02389 | u922695161 | 1491820096 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | x,y=input().split(" ")
z=x*y
o=(x+y)*2
print(z o) |
s874939855 | p02389 | u395334793 | 1491820514 | Python | Python3 | py | Runtime Error | 0 | 0 | 172 | while True:
h, w = map (int,input().split(" "))
if h == w == 0 : break
for y in range(h):
print(''.join('#.'[(x+y) %2] for x in range(w)))
print("") |
s178252438 | p02389 | u922695161 | 1491822206 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | x = input().split()
z=x[0]*y[1]
a=(x[0]+x[1])*2
print(z a) |
s125227264 | p02389 | u922695161 | 1491822223 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | x = input().split()
z=x[0]*y[1]
a=(x[0]+x[1])*2
print(z,a) |
s979019328 | p02389 | u922695161 | 1491822489 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | x = map(int,raw_input().split())
z=x[0]*x[1]
a=(x[0]+x[1])*2
print(z,a) |
s444834696 | p02389 | u922695161 | 1491822732 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | x = map(int, input().split(" "))
z=x[0]*x[1]
a=(x[0]+x[1])*2
print(z,a) |
s074588417 | p02389 | u922695161 | 1491822802 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | import sys
x, y = sys.stdin
z=x*y
a=(x+y)*2
print(z,a) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.