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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s484474834 | p02389 | u967096686 | 1523595526 | Python | Python | py | Runtime Error | 0 | 0 | 57 | num1=int(input())
num2=int(input())
s=num1*num2
print(s)
|
s817007832 | p02389 | u967096686 | 1523595563 | Python | Python | py | Runtime Error | 0 | 0 | 45 | a=int(input())
b=int(input())
s=a*b
print(s)
|
s797448544 | p02389 | u967096686 | 1523595631 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a=int(input())
b=int(input())
s=a*b
print(s)
|
s471738138 | p02389 | u967096686 | 1523595722 | Python | Python | py | Runtime Error | 0 | 0 | 10 |
print(s)
|
s358044457 | p02389 | u967096686 | 1523595749 | Python | Python | py | Runtime Error | 0 | 0 | 15 | s=a*b
print(s)
|
s716311420 | p02389 | u967096686 | 1523595771 | Python | Python | py | Runtime Error | 0 | 0 | 30 | a=int(input())
s=a*b
print(s)
|
s004878451 | p02389 | u967096686 | 1523595984 | Python | Python | py | Runtime Error | 0 | 0 | 15 | a,b=input(a,b)
|
s870505042 | p02389 | u967096686 | 1523595994 | Python | Python | py | Runtime Error | 0 | 0 | 12 | a,b=input()
|
s762324194 | p02389 | u967096686 | 1523596005 | Python | Python | py | Runtime Error | 0 | 0 | 21 | a,b=input()
ptint(a)
|
s824476796 | p02389 | u967096686 | 1523596147 | Python | Python | py | Runtime Error | 0 | 0 | 19 | a=input()
ptint(a)
|
s965965786 | p02389 | u196653484 | 1523609198 | Python | Python3 | py | Runtime Error | 0 | 0 | 364 | #16D8101012J 伊藤惇 dj Python3
def area(a,b):
c=a*b
return c
def perimeter_of_the_rectangle(a,b):
c=(a+b)*2
return c
def Rectangle():
a=int(input("input_a:"))
b=int(input("input_b:"))
c=area(a,b)
d=perimeter_of_the_rectangle(a,b)
print("{} {}".format(c,d))
if __name__ == '__main__':
Rectangle()
"""
perimeter
"""
|
s352472943 | p02389 | u196653484 | 1523609235 | Python | Python3 | py | Runtime Error | 0 | 0 | 344 | #16D8101012J 伊藤惇 dj Python3
def area(a,b):
c=a*b
return c
def perimeter_of_the_rectangle(a,b):
c=(a+b)*2
return c
def Rectangle():
a=int(input("input_a:"))
b=int(input("input_b:"))
c=area(a,b)
d=perimeter_of_the_rectangle(a,b)
print("{} {}".format(c,d))
if __name__ == '__main__':
Rectangle()
|
s180815163 | p02389 | u713245476 | 1523635552 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a=int(input("縦"))
b=int(input("横"))
print(a*b," ",2*a+2*b)
|
s706892908 | p02389 | u772417059 | 1523643289 | Python | Python | py | Runtime Error | 0 | 0 | 39 | a=input()
b=input()
print(a*2,' 'b*2)
|
s748414403 | p02389 | u196653484 | 1523673997 | Python | Python3 | py | Runtime Error | 0 | 0 | 371 | #16D8101012J 伊藤惇 dj Python3
def area(a,b):
c=a*b
return c
def perimeter_of_the_rectangle(a,b):
c=(a+b)*2
return c
def Rectangle():
a=int(input("input_a:"))
b=int(input("input_b:"))
c=area(a,b)
d=perimeter_of_the_rectangle(a,b)
print("{} {}".format(c,d),end="")
if __name__ == '__main__':
Rectangle()
"""
perimeter
"""
|
s672944794 | p02389 | u411881271 | 1523677359 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a,b=map(int,input().split())
s=a*b
sum=a*2+b*2
print(s," ",sum)
|
s433052639 | p02389 | u687567104 | 1523769385 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a = int(input())
b = int(input())
print(a*b)
print( (a*2) + (b*2) )
|
s827299521 | p02389 | u687567104 | 1523769404 | Python | Python | py | Runtime Error | 0 | 0 | 70 | a = int(input())
b = int(input())
print(a*b)
print( (a*2) + (b*2) )
|
s098479096 | p02389 | u687567104 | 1523769404 | Python | Python | py | Runtime Error | 0 | 0 | 70 | a = int(input())
b = int(input())
print(a*b)
print( (a*2) + (b*2) )
|
s336973751 | p02389 | u687567104 | 1523769544 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a,b = map(int, input().split())
print( a*b, 2*(a+b) )
|
s027801467 | p02389 | u728137020 | 1523814274 | Python | Python | py | Runtime Error | 0 | 0 | 89 |
A[2]={0,0}
for i in range(2):
A[i]=int(input())
print(A[0]*A[1]," ",2*A[0]+2*A[1])
|
s373182036 | p02389 | u728137020 | 1523814624 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 |
A[2]={0,0}
for i in range(2):
A[i]=int(input())
print(A[0]*A[1]," ",2*A[0]+2*A[1])
|
s577609341 | p02389 | u728137020 | 1523814693 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 |
A={0,0}
for i in range(2):
A[i]=int(input())
print(A[0]*A[1]," ",2*A[0]+2*A[1])
|
s993817685 | p02389 | u728137020 | 1523815213 | Python | Python | py | Runtime Error | 0 | 0 | 123 |
#include <iostream>
int main() {
int a, b;
std::cin>>a>> b;
std::cout<<a*b<<" "<<2 * (a + b);
return 0
}
|
s182821161 | p02389 | u728137020 | 1523816015 | Python | Python | py | Runtime Error | 0 | 0 | 121 | #include <iostream>
using namespace std;
int main(){
int a, b;
cin>>a>>b;
cout<<a*b<<' '<<2*(a+b)<<endl;
return 0;
}
|
s993449461 | p02389 | u728137020 | 1523816048 | Python | Python | py | Runtime Error | 0 | 0 | 121 | #include <iostream>
using namespace std;
int main(){
int a, b;
cin>>a>>b;
cout<<a*b<<' '<<2*(a+b)<<end|;
return 0;
}
|
s779832565 | p02389 | u728137020 | 1523816071 | Python | Python | py | Runtime Error | 0 | 0 | 121 | #include <iostream>
using namespace std;
int main(){
int a, b;
cin>>a>>b;
cout<<a*b<<' '<<2*(a+b)<<endl;
return 0;
}
|
s540099879 | p02389 | u055885332 | 1523855494 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a=int(input(""))
b=int(input(""))
p=(a+b)*2
Area=a*b
print(p,Area)
|
s191742955 | p02389 | u055885332 | 1523855529 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a=int(input(""))
b=int(input(""))
p=(a+b)*2
Area=a*b
print(p,Area)
|
s275579627 | p02389 | u055885332 | 1523855566 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a=int(input())
b=int(input())
p=(a+b)*2
Area=a*b
print(p,Area)
|
s877758565 | p02389 | u055885332 | 1523855838 | Python | Python | py | Runtime Error | 0 | 0 | 68 | #
a=int(input())
b=int(input())
p=(a+b)*2
Area=a*b
print(Area,p)
|
s472540690 | p02389 | u564105430 | 1523857516 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a=int(input())
b=int(input())
print(a*b," ",2*a+2*b)
|
s797596106 | p02389 | u848218390 | 1523858689 | Python | Python3 | py | Runtime Error | 20 | 5588 | 61 | s = input()
a = int(s[0])
b = int(s[2])
print(a*b, 2*(a+b))
|
s374056686 | p02389 | u046108504 | 1523858756 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a = input()
b = input()
print (a*b 2*a+2*b)
|
s964378812 | p02389 | u848218390 | 1523858780 | Python | Python3 | py | Runtime Error | 20 | 5584 | 61 | s = input()
a = int(s[0])
b = int(s[2])
print(a*b, 2*(a+b))
|
s289778487 | p02389 | u781194524 | 1523859063 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a.b=[int() for x in input().split]
print(a*b,(a+b)*2)
|
s558359888 | p02389 | u781194524 | 1523859111 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a,b=[int(x) for x in input().split()]
print(a*b,(a+b)*2)
|
s903793541 | p02389 | u592529978 | 1523931855 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a=input()
b=input()
print a*b
print (2*a)+(2*b)
|
s517923270 | p02389 | u592529978 | 1523932556 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a,b=map(int,raw_input().split(''))
print (a*b,2*a+2*b)
|
s028808169 | p02389 | u580836283 | 1523939877 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a=int(input("lenA="))
b=int(input("lenB="))
c=a+a+b+b
d=a*b
print(",c, ,d,")
|
s794570025 | p02389 | u580836283 | 1523940056 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a=int(input("lenA="))
b=int(input("lenB="))
c=a+a+b+b
d=a*b
print(",c, ,d,")
|
s549148810 | p02389 | u580836283 | 1523940326 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a=int(input("lenA="))
b=int(input("lenB="))
c=a+a+b+b
d=a*b
print(",d, ,c,")
|
s637850156 | p02389 | u580836283 | 1523940392 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a=int(input("lenA="))
b=int(input("lenB="))
c=a+a+b+b
d=a*b
print(d," ",c,)
|
s713902539 | p02389 | u580836283 | 1523940442 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a=int(input("lenA="))
b=int(input("lenB="))
c=a+a+b+b
d=a*b
print(d,c,)
|
s913785710 | p02389 | u580836283 | 1523940589 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a=int(input())
b=int(input())
c=a+a+b+b
d=a*b
print(d,c)
|
s008872065 | p02389 | u017435045 | 1523941352 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = [i for i in int(input().split())]
print(a[0]*a[1], sum(a))
|
s424743928 | p02389 | u017435045 | 1523941383 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a =map(int, input().split())
print(a[0]*a[1], sum(a))
|
s736940468 | p02389 | u017435045 | 1523941410 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a =map(int, input().split())
print(a[0]*a[1], 2(a[0]+a[1]))
|
s636441355 | p02389 | u017435045 | 1523941438 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a =listmap(int, input().split()))
print(a[0]*a[1], 2(a[0]+a[1]))
|
s394000565 | p02389 | u017435045 | 1523941451 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a =list(map(int, input().split()))
print(a[0]*a[1], 2(a[0]+a[1]))
|
s422145688 | p02389 | u017435045 | 1523941532 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a =list(map(int, input().split()))
b = []
b[0] = a[0]*a[1]
b[1] = (a[0]+a[1])*2
print(*b)
|
s863164920 | p02389 | u017435045 | 1523941833 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | a =map(int, input().split())
b = [0 for i in range(2)]
b[0] = a[0]*a[1]
b[1] = (a[0]+a[1])*2
print(*b)
|
s156001939 | p02389 | u831591800 | 1523954623 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a = input()
b = input()
print("a*b"+"2*a+2*b")
|
s328035224 | p02389 | u573915636 | 1523955611 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a=int(input("a:"))
b=int(input("b:"))
if 1<=a<=100 and 1<=b<=100:
print(a*b," ",2*(a+b))
|
s173787119 | p02389 | u899724190 | 1523956096 | Python | Python | py | Runtime Error | 0 | 0 | 109 | a=input()
line=a.split()
x=int(line[0])
y=int(line[1])
z1=x*y
z2=x*2+y*2
z3=str(z1)
z4=str(z2)
print(z1,z2)
|
s268862911 | p02389 | u899724190 | 1523956152 | Python | Python | py | Runtime Error | 0 | 0 | 109 | a=input()
line=a.split()
x=int(line[0])
y=int(line[1])
z1=x*y
z2=x*2+y*2
z3=str(z1)
z4=str(z2)
print(z3,z4)
|
s586229305 | p02389 | u909075105 | 1523964504 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | #16D8101023J 久保田凌弥 kubotarouxxx python3
x=int(input())
y=int(input())
w=x*y
z=2*x+2*y
print(w)
print(z)
|
s647120176 | p02389 | u909075105 | 1523964519 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | #16D8101023J 久保田凌弥 kubotarouxxx python3
x=int(input())
y=int(input())
w=x*y
z=2*x+2*y
print(w)
print(z)
|
s107548727 | p02389 | u909075105 | 1523964611 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #16D8101023J 久保田凌弥 kubotarouxxx python3
x=int(input())
y=int(input())
w=x*y
z=2*x+2*y
print(w,z)
|
s025254043 | p02389 | u909075105 | 1523964679 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #16D8101023J 久保田凌弥 kubotarouxxx python3
x=int(input())
y=int(input())
w=x*y
z=x*2+y*2
print(w,z)
|
s891756023 | p02389 | u909075105 | 1523964879 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #16D8101023J 久保田凌弥 kubotarouxxx python3
x=int(input())
y=int(input())
w=x*y
z=2*(x+y)
print(w,z)
|
s046292777 | p02389 | u909075105 | 1523968761 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #16D8101023J 久保田凌弥 kubotarouxxx python3
x=int(input())
y=int(input())
w=x*y
z=2*(x+y)
print(w,z)
|
s634117171 | p02389 | u909075105 | 1523969052 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | #16D8101023J 久保田凌弥 kubotarouxxx python3
(x,y)=int(input())
w=x*y
z=2*x+2*y
print(w,z)
|
s352050272 | p02389 | u909075105 | 1523969518 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | #16D8101023J 久保田凌弥 kubotarouxxx python3
x,y=map(int, raw_input().split())
w=x*y
z=2*x+2*y
print(w,z)
|
s409127491 | p02389 | u909075105 | 1523969572 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | #16D8101023J 久保田凌弥 kubotarouxxx python3
x,y=map(int, raw_input().split())
w=x*y
z=2*x+2*y
print(w,z)
|
s099173711 | p02389 | u055885332 | 1523974929 | Python | Python3 | py | Runtime Error | 20 | 5584 | 97 | #
line=(input())
line.split()
a=int(line[0])
b=int(line[2])
p=(a+b)*2
Area=a*b
print(Area,p)
|
s265871576 | p02389 | u055885332 | 1523975425 | Python | Python3 | py | Runtime Error | 20 | 5584 | 92 | line=(input())
line.split()
a=int(line[0])
b=int(line[2])
p=(a+b)*2
Area=a*b
print(Area,p)
|
s994300694 | p02389 | u372721957 | 1523975550 | Python | Python | py | Runtime Error | 0 | 0 | 107 | #include<iostream>
int main()
{
int a,b;
std::cin>>a >>b;
std::cout<<a*b <<2*a+2*b;
return 0;
}
|
s937046394 | p02389 | u063056051 | 1523978117 | Python | Python | py | Runtime Error | 0 | 0 | 53 | x,y=map(int,raw_input().split())
print a*b,(a+b)*2
|
s463943649 | p02389 | u063056051 | 1523978126 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | x,y=map(int,raw_input().split())
print a*b,(a+b)*2
|
s043865821 | p02389 | u063056051 | 1523978138 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | x,y=map(int,raw_input().split())
print x*y,(x+y)*2
|
s701222883 | p02389 | u063056051 | 1523979497 | Python | Python | py | Runtime Error | 0 | 0 | 51 | x,y=map(int, input().split())
print(x*y,(x+y)*2)
|
s743404970 | p02389 | u308770067 | 1523988362 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | #include <iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<(a*b)<<" "<<(a+b)*2;
return 0;
}
|
s048390103 | p02389 | u875523539 | 1524028298 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | x = int(input());
print(a*b);
x = int(input());
print(a*2+b*2);
|
s904376888 | p02389 | u875523539 | 1524028505 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | x = int(input() input());
print(a*b);
print(a*2+b*2);
|
s525161358 | p02389 | u573915636 | 1524029788 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | x=input().split()
a=int(x[0])
b=int(x[1])
if 1<=a<=100 and 1<=b<=100:
print(a*b," ",2*(a+b))
\n
|
s765134790 | p02389 | u252641015 | 1524030738 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a=int(input("input a"))
b=int(input("input b"))
print(a*b," ",2*(a+b))
|
s781440926 | p02389 | u252641015 | 1524030823 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a=int(input("input a"))
b=int(input("input b"))
print(a*b," ",2*(a+b))
|
s103237351 | p02389 | u252641015 | 1524031011 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a=int(input("input a"))
b=int(input("input b"))
print(a*b,2*(a+b))
|
s613839982 | p02389 | u148477094 | 1524032477 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b=map(int,input(),split())
x=a*b
y=2*(a+b)
print(x,y)
|
s086037154 | p02389 | u967096686 | 1524036847 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | s=raw_input().split()
a=int(s[0])
b=int(s[1])
print("{0} {1}".format(a*b,2*(a+b)))
|
s048568421 | p02389 | u967096686 | 1524036875 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | s=raw_input().split()
a=int(s[0])
b=int(s[1])
print("{0} {1}".format(a*b,2*(a+b)))
|
s978301216 | p02389 | u215863296 | 1524040976 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a,b=map(int,input().split())
print(a*b)
print(2*a+2*B)
|
s033486223 | p02389 | u648117624 | 1524154674 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a = int(input())
b = int(input())
s = str(a*b)
p = str(2*a+2*b)
print(s+" "+p)
|
s553788892 | p02389 | u648117624 | 1524154723 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a = int(input())
b = int(input())
s = a*b
p = 2*a+2*b
print(s, p)
|
s865410084 | p02389 | u648117624 | 1524154777 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a,b = int(input())
s = a*b
p = 2*a+2*b
print(s,p)
|
s937070614 | p02389 | u485986915 | 1524214409 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = int(input())
b = int(input())
print(a*b)
print(2*a + 2*b)
|
s512183724 | p02389 | u485986915 | 1524214490 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print(a*b)
print(2*a+2*b)
|
s140667467 | p02389 | u485986915 | 1524214772 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a,b = map(int, input().split)
print(a*b,2*a+2*b)
|
s136289591 | p02389 | u836133197 | 1524486707 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a, b = map(int, input())
print(a*b)
|
s243042830 | p02389 | u836133197 | 1524486710 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a, b = map(int, input())
print(a*b)
|
s634609053 | p02389 | u836133197 | 1524486813 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = list(map(int, input()))
print("{} {}".format(a[0]*a[1], 2*sum(a)))
|
s953211847 | p02389 | u836133197 | 1524486876 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a, b = list(map(int, input()))
c = a * b
d = 2*(a + b)
print("{} {}".format(c, d))
|
s527501626 | p02389 | u255317651 | 1524492452 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a, b =list(map(int,input().split())
print("{} {}".format(a*b,2*(a+b))
|
s865930146 | p02389 | u255317651 | 1524493060 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a, b =list(map(int,input().split())
print("{} {}".format(a*b,2*(a+b)))
|
s061791926 | p02389 | u166841004 | 1524549319 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a=(input()))
b=(input()))
print(a*b)
print(a*2+b*2)
|
s281171883 | p02389 | u166841004 | 1524549333 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a=(input())
b=(input())
print(a*b)
print(a*2+b*2)
|
s772425948 | p02389 | u166841004 | 1524549367 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a=int(input())
b=int(input())
print(a*b)
print(a*2+b*2)
|
s701224203 | p02389 | u166841004 | 1524549393 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a=long(input())
b=long(input())
print(a*b)
print(a*2+b*2)
|
s111078260 | p02389 | u166841004 | 1524549410 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a=input()
b=input()
print(a*b)
print(a*2+b*2)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.