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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s122894509 | p02388 | u186524656 | 1402031556 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print (input())**3 |
s582441975 | p02388 | u186524656 | 1402033362 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s875182525 | p02389 | u247186218 | 1530933056 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | row = input().split()
print(row[0] * row[1], 2 * (row[0] + row[1]))
|
s404151320 | p02389 | u089116225 | 1531130218 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a,b = map(int,input().split())
s = a*b
l = 2*(a+b)
return s,l
|
s234634192 | p02389 | u896746547 | 1531235049 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a,b = [int(i) for i input().split()]
print(a*b , (a+b)*2)
|
s880141411 | p02389 | u138628845 | 1531274947 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a = input()
b = input()
c = int(a) * int(b)
d = (int(a)*2) + (int(b)*2)
print(c)
print(d)
|
s219551625 | p02389 | u138628845 | 1531275296 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a = input()
b = input()
c = int(a) * int(b)
d = (int(a)*2) + (int(b)*2)
print('%d %d' %(c,d))
|
s152518940 | p02389 | u467175809 | 1531291081 | Python | Python | py | Runtime Error | 0 | 0 | 50 | a, b = map(int, raw_input().split())
print a * b
|
s539139309 | p02389 | u324811972 | 1531363040 | Python | Python | py | Runtime Error | 0 | 0 | 93 | length = input().split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(a," ",b)
|
s109074720 | p02389 | u324811972 | 1531363079 | Python | Python | py | Runtime Error | 0 | 0 | 111 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(a," ",b)
|
s221256378 | p02389 | u324811972 | 1531363144 | Python | Python | py | Runtime Error | 0 | 0 | 116 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(area," ",per)
|
s091008816 | p02389 | u324811972 | 1531363167 | Python | Python | py | Runtime Error | 0 | 0 | 116 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(area," ",per)
|
s392593763 | p02389 | u324811972 | 1531363234 | Python | Python | py | Runtime Error | 0 | 0 | 126 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(str(area)+" "+str(per))
|
s644436300 | p02389 | u324811972 | 1531363262 | Python | Python | py | Runtime Error | 0 | 0 | 154 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
print(str(a)+" "+str(b))
#area = a*b
#per = 2*a+2*b
#print(str(area)+" "+str(per))
|
s516431359 | p02389 | u324811972 | 1531363286 | Python | Python | py | Runtime Error | 0 | 0 | 169 | length0 = input()
print(" ")
#length = length0.split()
#a = length[0]
#b = length[1]
#print(str(a)+" "+str(b))
#area = a*b
#per = 2*a+2*b
#print(str(area)+" "+str(per))
|
s686222729 | p02389 | u324811972 | 1531363305 | Python | Python | py | Runtime Error | 0 | 0 | 173 | length0 = input()
print(length0)
#length = length0.split()
#a = length[0]
#b = length[1]
#print(str(a)+" "+str(b))
#area = a*b
#per = 2*a+2*b
#print(str(area)+" "+str(per))
|
s055580965 | p02389 | u324811972 | 1531363491 | Python | Python | py | Runtime Error | 0 | 0 | 180 | length0 = input()
#print(length0)
length = length0.split()
a = int(length[0])
b = int(length[1])
print(str(a)+" "+str(b))
#area = a*b
#per = 2*a+2*b
#print(str(area)+" "+str(per))
|
s412015451 | p02389 | u324811972 | 1531363502 | Python | Python | py | Runtime Error | 0 | 0 | 178 | length0 = input()
#print(length0)
length = length0.split()
a = int(length[0])
b = int(length[1])
#print(str(a)+" "+str(b))
area = a*b
per = 2*a+2*b
print(str(area)+" "+str(per))
|
s212754349 | p02389 | u303952184 | 1531838743 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | list = int(input().split())
a = list[0]
b = list[1]
print (a*b + " " + 2*(a+b))
|
s668473452 | p02389 | u303952184 | 1531839136 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a, b = map[int, input().split()]
print (a*b, 2*(a+b))
|
s936028026 | p02389 | u466526478 | 1534773458 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | input sys
a = sys.argv[1]
b = sys.argv[2]
menseki = a * b
syui = (a * 2) + (b * 2)
print(menseki, syui)
|
s934366485 | p02389 | u466526478 | 1534773474 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | input sys
a = sys.argv[1]
b = sys.argv[2]
menseki = a * b
syui = (a * 2) + (b * 2)
print(int(menseki), int(syui))
|
s395178899 | p02389 | u466526478 | 1534773550 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | input sys
a = sys.argv[0]
b = sys.argv[1]
menseki = a * b
syui = (a * 2) + (b * 2)
print(int(menseki), int(syui))
|
s522080136 | p02389 | u466526478 | 1534773576 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | input sys
a = sys.argv[0]
b = sys.argv[1]
menseki = a * b
syui = (a * 2) + (b * 2)
print(int(menseki)," "int(syui))
|
s744816682 | p02389 | u466526478 | 1534773596 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | input sys
a = sys.argv[0]
b = sys.argv[1]
menseki = a * b
syui = (a * 2) + (b * 2)
print int(menseki)
print int(syui)
|
s059806513 | p02389 | u466526478 | 1534773618 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | input sys
a = sys.argv[0]
b = sys.argv[1]
menseki = a * b
syui = (a * 2) + (b * 2)
print a * b
print (a * 2) + (b * 2)
|
s229360174 | p02389 | u466526478 | 1534773643 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | input sys
a = int(sys.argv[0])
b = int(sys.argv[1])
menseki = a * b
syui = (a * 2) + (b * 2)
print a * b
print (a * 2) + (b * 2)
|
s806226762 | p02389 | u655879321 | 1534905519 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | A, B = map(int, input().sprit())
print(A*B,2*(A+B))
|
s462647898 | p02389 | u404682284 | 1534952260 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | package main
import (
"fmt"
)
func main(){
var a, b int
fmt.Scan(&a, &b)
fmt.Println(a*b, 2*(a+b))
}
|
s786674955 | p02389 | u260169299 | 1535141971 | Python | Python3 | py | Runtime Error | 0 | 0 | 245 | import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner input = new Scanner(System.in);
int a = input.nextInt();
int b = input.nextInt();
int p = a*2 + b*2;
int ar = a*b;
System.out.println(ar+" "+p);
}
}
|
s006983031 | p02389 | u928491417 | 1535424566 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a, b = map(int, input().split())
print(a*b, 2a+2b)
|
s991335921 | p02389 | u580227385 | 1535445587 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a, b = map(int, input().splot())
print(str(a * b) + str(2 * a + 2 * b))
|
s708891815 | p02389 | u085441951 | 1535631019 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | input = input()
a,b = input.split()
print(a * b, a*2 + b*2)
|
s858338720 | p02389 | u640181155 | 1535693641 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a = input()
b = input()
print("a * b 2(a + b)")
|
s837306997 | p02389 | u640181155 | 1535693946 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a,b = input(),split()
print("a * b 2(a + b)")
|
s487778058 | p02389 | u640181155 | 1535693995 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a,b = input(),split()
a = int(a)
b = int(b)
print("a * b 2(a + b)")
|
s670351474 | p02389 | u640181155 | 1535694035 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a,b = input(),split()
c = int(a)
d = int(b)
print("c * d 2(c + d)")
|
s982251493 | p02389 | u640181155 | 1535694889 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a,b = input(),split()
c = int(a)
d = int(b)
print("c * d 2(c + d)")
|
s765903404 | p02389 | u281808376 | 1540280266 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a_b=input().split()
print(int(a_b[0])*int(a_b[1]) int(a_b[0]*2+int(a_b[1]*2)))
|
s102670784 | p02389 | u281808376 | 1540280343 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a_b=input().split()
print(str(int(a_b[0])*int(a_b[1]))+" "+str(int(a_b[0]*2+int(a_b[1]*2))))
|
s582591754 | p02389 | u281808376 | 1540280413 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a_b=input().split()
a=int(a_b[0])
b=int(a_b[1])
print(a*b (a+b)*2)
|
s560581107 | p02389 | u112067694 | 1540372718 | Python | Python | py | Runtime Error | 0 | 0 | 35 | w = input()
h = input()
print(w*h)
|
s462702816 | p02389 | u112067694 | 1540372739 | Python | Python | py | Runtime Error | 0 | 0 | 39 | w = input('')
h = input('')
print(w*h)
|
s397582322 | p02389 | u112067694 | 1540372763 | Python | Python | py | Runtime Error | 0 | 0 | 28 | w, h = input('')
print(w*h)
|
s245393274 | p02389 | u112067694 | 1540372892 | Python | Python | py | Runtime Error | 0 | 0 | 74 | A, B = map(int, raw_input().split())
print(str(w*h) + ' ' + str((w+h)*2)
|
s629432751 | p02389 | u112067694 | 1540372900 | Python | Python | py | Runtime Error | 0 | 0 | 75 | A, B = map(int, raw_input().split())
print(str(w*h) + ' ' + str((w+h)*2))
|
s128644657 | p02389 | u344368371 | 1540545368 | Python | Python | py | Runtime Error | 0 | 0 | 65 | a = input()
b = input()
S = a*b
L = 2*a+2*b
print(S)
print(L)
|
s574301172 | p02389 | u394290028 | 1540617670 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | x = int(input().rsplit(" "))
a = x[0] * x[1]
b = x[0] + x[1] + x[0] + x[1]
print(str(a) + str(b)
|
s732487968 | p02389 | u394290028 | 1540617678 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | x = int(input().split(" "))
a = x[0] * x[1]
b = x[0] + x[1] + x[0] + x[1]
print(str(a) + str(b)
|
s525009394 | p02389 | u394290028 | 1540617689 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | x = int(input().split(" "))
a = x[0] * x[1]
b = x[0] + x[1] + x[0] + x[1]
print(str(a) + str(b))
|
s908580428 | p02389 | u637765482 | 1540738250 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | print(a*b)
print(2*(a+b))
|
s208623247 | p02389 | u637765482 | 1540738303 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 |
print(2*(a+b))
|
s420214136 | p02389 | u184749404 | 1540989902 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a,b=int(input())
print((a+b)*2,a*b)
|
s752524024 | p02389 | u754514998 | 1541166620 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a, b = int(input(x) for x in input().split())
print((a+b)/2, (a+b)*2)
|
s098313627 | p02389 | u754514998 | 1541166666 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a, b = int(input(x) for x in input().split())
print((a*b)/2, (a+b)*2)
|
s467407323 | p02389 | u293957970 | 1541171360 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | number(a,b):
print(a*b,2*(a+b))
|
s384906492 | p02389 | u293957970 | 1541171372 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | (a,b):
print(a*b,2*(a+b))
|
s993722871 | p02389 | u127984384 | 1541173134 | Python | Python | py | Runtime Error | 0 | 0 | 40 | a=input()
b=input()
print(a*b,2*a+2*b)
|
s514946532 | p02389 | u127984384 | 1541173177 | Python | Python | py | Runtime Error | 0 | 0 | 40 | a=input()
b=input()
print(a*b,2*a+2*b)
|
s512636178 | p02389 | u127984384 | 1541173228 | Python | Python | py | Runtime Error | 0 | 0 | 39 | a=input()
b=input()
print a*b,2*a+2*b
|
s104261299 | p02389 | u262004823 | 1541237918 | Python | Python | py | Runtime Error | 0 | 0 | 34 | a b=int(input())
print(a*b 2a+2b)
|
s683307589 | p02389 | u262004823 | 1541244798 | Python | Python | py | Runtime Error | 0 | 0 | 89 | a, b = [int(x) for x in input().split(" ")]
print("{} {}".format(a * b, 2 * a + 2 * b))
|
s844818085 | p02389 | u135987475 | 1545234766 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | line = input().split()
a = int(line[0])
b = int(line[1])
print(srt(a*b) + " " + str((a+b)*2))
|
s269341517 | p02389 | u668055645 | 1545264399 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | print((int(input())+int(input()))*2)
|
s770276356 | p02389 | u266788078 | 1545313965 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | A,B = (int,map(input().split()))
print(A*B," ",2*(A+B))
|
s633996996 | p02389 | u266788078 | 1545313985 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | A,B = int,map(input().split())
print(A*B," ",2*(A+B))
|
s119345230 | p02389 | u638889288 | 1545571464 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | print(a*b)
print(2(a+b))
|
s671834726 | p02389 | u638889288 | 1545571526 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print(a*b 2(a+b))
|
s108909706 | p02389 | u638889288 | 1545571738 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a=int(input(''))
b=int(input(''))
pritn(a*b 2(a+b))
|
s994104382 | p02389 | u316246166 | 1545572797 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | a, b = int(input().split())
print(a*b
)
|
s508154429 | p02389 | u316246166 | 1545572811 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | a, b = int(input().split())
print(a*b)
|
s945761827 | p02389 | u962909487 | 1545811281 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | area= a + b
perimeter = a*b
print(area, perimeter)
|
s344757607 | p02389 | u962909487 | 1545811333 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | area= a *b
perimeter = 2*(a+b)
print(area, perimeter)
|
s637032349 | p02389 | u962909487 | 1545811798 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b = input().split()
area = a*b
perimeter = (a + b) * 2
print(area, perimeter)
|
s309551929 | p02389 | u962909487 | 1545811851 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | a,b = input().split()
print(a*b, (a+b)*2)
|
s534062184 | p02389 | u962909487 | 1545811868 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b = int(input().split())
print(a*b, (a+b)*2)
|
s529280044 | p02389 | u962909487 | 1545811896 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a,b = (int,input().split())
print(a*b, (a+b)*2)
|
s234559784 | p02389 | u643542669 | 1545833912 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a, b = int(input().split)
print(a*b, (a+b)*2)
|
s428362216 | p02389 | u643542669 | 1545833927 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a, b = int(input().split())
print(a*b, (a+b)*2)
|
s757439985 | p02389 | u643542669 | 1545834100 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a = int(input().split())
print(a[1]*a[0], (a[1]+a[0])*2)
|
s367815270 | p02389 | u094410550 | 1545839824 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a=int(input())
b=int(input())
x=a*b
y=2*a+2*b
print(x)
print(y)
|
s274503073 | p02389 | u498462680 | 1546086350 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a,b=input(),split(" ")
print(a+""+b)
|
s290236776 | p02389 | u498462680 | 1546086372 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b=input(),split(' ')
print(a+' '+b)
|
s918382876 | p02389 | u498462680 | 1546086584 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a,b=input(),split()
print(a+' '+b)
|
s227050267 | p02389 | u498462680 | 1546086609 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | a,b=input(),split()
print(a)
|
s025302588 | p02389 | u498462680 | 1546086861 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a,b = input().split()
S = a*b
C = 2 * (a+b)
print(S + " " + C)
|
s649004098 | p02389 | u498462680 | 1546086874 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a,b = int(input().split())
S = a*b
C = 2 * (a+b)
print(S + " " + C)
|
s393766489 | p02389 | u498462680 | 1546086902 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b = input().split()
a = int(a)
b = int(b)
S = a*b
C = 2 * (a+b)
print(S + " " + C)
|
s323622321 | p02389 | u697703458 | 1546239484 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a=input()
b=split()
d=list()
for c in b:
d.append(int(c))
print(d[0]*d[1],2*d[0]+2*d[1])
|
s560983138 | p02389 | u697703458 | 1546239526 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a=input()
b=split(a)
d=list()
for c in b:
d.append(int(c))
print(d[0]*d[1],2*d[0]+2*d[1])
|
s654186171 | p02389 | u984892564 | 1551508807 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | def method(input()):
l = input().split(' ')
square = int.l[0] * int.l[1]
length = 2 * int.l[0] + 2* int.l[1]
print(square length)
method(input(3 5))
|
s073191737 | p02389 | u984892564 | 1551508866 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | def method(input()):
l = input().split(' ')
square = int.l[0] * int.l[1]
length = 2 * int.l[0] + 2* int.l[1]
print(square length)
method(input(3 5))
|
s778394436 | p02389 | u984892564 | 1551508958 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | def method(input()):
l = input().split(' ')
square = int(l[0]) * int(l[1])
length = 2 * int(l[0]) + 2* int(l[1])
print(square length)
method(input(3 5))
|
s822267776 | p02389 | u984892564 | 1551509366 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a,b = map(list, input().split())
print(a*b, 2*(a+b))
|
s213562025 | p02389 | u202430481 | 1551576395 | Python | Python | py | Runtime Error | 0 | 0 | 78 | a = int(input())
b = int(input())
c = a * b
d = 2 * (a + b)
print(c)
print(d)
|
s346580038 | p02389 | u202430481 | 1551576481 | Python | Python | py | Runtime Error | 0 | 0 | 72 | a = int(input())
b = int(input())
c = a * b
d = 2 * (a + b)
print(c,d)
|
s344061463 | p02389 | u202430481 | 1551576501 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = int(input())
b = int(input())
c = a * b
d = 2 * (a + b)
print(c,d)
|
s882201343 | p02389 | u854556813 | 1551618700 | Python | Python | py | Runtime Error | 0 | 0 | 66 | l=input().split()
a=int(l[0])
b=int(l[1])
print(a*b)
print(2a+2b)
|
s723022450 | p02389 | u854556813 | 1551618830 | Python | Python | py | Runtime Error | 0 | 0 | 59 | l=input().split()
a=int(l[0])
b=int(l[1])
print(a*b,2a+2b)
|
s780161859 | p02389 | u854556813 | 1551618849 | Python | Python | py | Runtime Error | 0 | 0 | 59 | l=input().split()
a=int(l[0])
b=int(l[1])
print(a*b 2a+2b)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.