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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s552537556 | p02389 | u180001441 | 1520793944 | Python | Python | py | Runtime Error | 0 | 0 | 61 | 1<=a,b<=100
area = a * b
length = 2*(a+b)
print area, length
|
s151169588 | p02389 | u446404682 | 1520911425 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | n=int(input())
m=int(input())
print(n*m,2*(n+m))
|
s505107036 | p02389 | u566311709 | 1521119738 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | l = map(int, raw_input().split())
print (l[0] * l[1]), ((l[0] + l[1]) * 2)
|
s088225393 | p02389 | u648117624 | 1521353648 | Python | Python | py | Runtime Error | 0 | 0 | 27 | int(a)
int(b)
print(2a+2b)
|
s568868606 | p02389 | u648117624 | 1521353745 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | a = 2
b = 10
print(2a + 2b)
|
s466032123 | p02389 | u648117624 | 1521353846 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a = 2
b = 10
print(a*b)
print(2a+2b)
|
s202895611 | p02389 | u648117624 | 1521355301 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | #coding: UTF-8
x = raw_input().split()
y = map(int, x)
a = y[0]
b = y[1]
c1 = a*b
c2 = 2(a+b)
print(c1, c2)
|
s056953721 | p02389 | u648117624 | 1521355416 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | #coding: UTF-8
x = raw_input().split()
y = map(int, x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print(c,d)
|
s445658490 | p02389 | u648117624 | 1521355556 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | #coding: UTF-8
x = input().split()
y = map(int,x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print(c,d)
|
s856088183 | p02389 | u706023549 | 1521363472 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | l = map(int, input().split())
print(str(l[0]*l[1]) + " " + str(l[0]*2+l[1]*2))
|
s330668699 | p02389 | u921303861 | 1521382764 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | A, B = map(int, input().split())
print((A*B) + " " + (2*A+2*B))
|
s255812565 | p02389 | u178477792 | 1521432888 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | nums = list(map(int, input().split(" ")))
area = nums[0] * nums[1]
perimeter = nums[0] * 2 + nums[1] * 2
print(area + " " + perimeter)
|
s728015503 | p02389 | u227344542 | 1521464988 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a=int(input())
b=int(input())
print((a*b)+' '+(2a+2b))
|
s789060157 | p02389 | u227344542 | 1521465076 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a=int(input())
b=int(input())
print( str(a*b)+' '+str(a*2+b*2))
|
s103080625 | p02389 | u227344542 | 1521465093 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a=int(input())
b=int(input())
print(str(a*b)+' '+str(a*2+b*2))
|
s565247856 | p02389 | u464859367 | 1521707825 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | n = input().split()
print(str(n[0] * n[1]) + " " + str((n[0] * 2) + (n[1] * 2)))
|
s740403974 | p02389 | u662488567 | 1522077857 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | print(int(input()) ** 3)
|
s723323652 | p02389 | u662488567 | 1522077909 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | print(int(input()) ** 3)
|
s128391503 | p02389 | u621084859 | 1522314841 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a=int(input())
b=int(input())
print(2*a 2*b)
|
s220322313 | p02389 | u621084859 | 1522314884 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a=int(input())
b=int(input())
print(2*a 2*b)
|
s304367275 | p02389 | u621084859 | 1522366941 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a= int(input())
b= int(input())
print(a*b (a+b)2)
|
s428433350 | p02389 | u621084859 | 1522366995 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a= int(input())
b= int(input())
print(a*b (a+b)2)
|
s272207113 | p02389 | u621084859 | 1522367019 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a= int(input())
b= int(input())
print(a*b, (a+b)2)
|
s063332739 | p02389 | u621084859 | 1522367443 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | n=input().split(" ")
a= int(n[0])
b= int(n[1])
print(a*b+' '+a*a+b*b)
|
s308764308 | p02389 | u621084859 | 1522367499 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | n=input().split(" ")
a= int(n[0])
b= int(n[1])
print(a*b a*a+b*b)
|
s401196542 | p02389 | u621084859 | 1522370327 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | n=input().split()
a= int(n[0])
b= int(n[1])
print(a*b (a+b)*2)
|
s178972770 | p02389 | u621084859 | 1522376575 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a=int(input())
b=int(input())
print(a*b (a+b)2)
|
s526773882 | p02389 | u621084859 | 1522376618 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a=int(input())
b=int(input())
print(a*b (a+b)2)
|
s357684442 | p02389 | u782670949 | 1522844746 | Python | Python3 | py | Runtime Error | 0 | 0 | 201 | sikaku = input()
sikaku_list = sikaku.split(' ')
sikaku_a = int(sikaku_list[0])
sikaku_b = int(sikaku_list[1])
menseki = sikaku_a * sikaku_b
syui = (sikaku_a + sikaku_b) * 2
print(menseki, ' '. syui)
|
s283815234 | p02389 | u114315703 | 1523130116 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a, b = [int(elem) for elem in input().split]
print(a * b, (a + b) * 2)
|
s797274289 | p02389 | u244493040 | 1523182941 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a,b=int(input().split())
print(a*b, 2*(a+b))
|
s618790964 | p02389 | u244493040 | 1523182964 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b=map(int,(input().split())
print(a*b, 2*(a+b))
|
s715031888 | p02389 | u781194524 | 1523327902 | Python | Python | py | Runtime Error | 0 | 0 | 73 | x = input()
y = input()
sum = x*y
around = 2*x+2*y
input int(sum,around)
|
s670784320 | p02389 | u781194524 | 1523328267 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | x = input()
y = input()
sum = x*y
around = 2*x+2*y
input int(sum around)
|
s688205903 | p02389 | u781194524 | 1523328915 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | x = raw_input().split()
y = map(int,x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print c, d
|
s162156781 | p02389 | u781194524 | 1523328957 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | x = raw_input().split()
y = map(int,x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print c, d
|
s232405660 | p02389 | u781194524 | 1523329246 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a,b=[int(x) for x input.split()]
print(a*b,a*2+b*2)
|
s526220685 | p02389 | u359372421 | 1523350651 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | s = input()
ss = s.plit(" ")
a = int(ss[0])
b = int(ss[1])
print("{} {}".format(a*b, 2*(a+b))
|
s224773746 | p02389 | u843169619 | 1523431110 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 |
line = int(input().split)
area = line[0] * line[1] % 2
peri = line[0] * 2 + line[1] * 2
print(area + ' ' + peri)
|
s484295973 | p02389 | u843169619 | 1523431644 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | x = input()
a = int( x.split(' ')[0] )
b = int( x.split(' ')[1] )
print( a * b, (a + b) * 2 )
|
s916332051 | p02389 | u843169619 | 1523431658 | Python | Python | py | Runtime Error | 0 | 0 | 106 | x = input()
a = int( x.split(' ')[0] )
b = int( x.split(' ')[1] )
print( a * b, (a + b) * 2 )
|
s295119138 | p02389 | u843169619 | 1523431680 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | x = input()
a = int( x.split[0] )
b = int( x.split[1] )
print( a * b, (a + b) * 2 )
|
s145814763 | p02389 | u461923444 | 1523436617 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | file:///jugyou/ise/16D8104004E/c_rectangle.py
|
s952707857 | p02389 | u461923444 | 1523436861 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a=int(input("a:"))
b=int(input("b:"))
s=a*b
m=2*a+2*b
print(s,m)
|
s141312459 | p02389 | u213830293 | 1523437103 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a=int(input("a:"))
b=int(input("b:"))
area=a*b
pm=2*a+2*b
|
s218837940 | p02389 | u213830293 | 1523437143 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | a=int(input("a:"))
b=int(input("b:"))
area=a*b
pm=2*a+2*b
print(area,pm)
|
s322425883 | p02389 | u687567104 | 1523447587 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a = int(input())
b = int(input())
print(a*b)
print(a+a+b+b)
|
s964887870 | p02389 | u687567104 | 1523447655 | Python | Python | py | Runtime Error | 0 | 0 | 78 | a = int(input())
b = int(input())
sum = (a*2) + (b*2)
print(a*b)
print(sum)
|
s380459176 | p02389 | u687567104 | 1523447815 | Python | Python | py | Runtime Error | 0 | 0 | 78 | a = int(input())
b = int(input())
sum = (a*2) + (b*2)
print(a*b)
print(sum)
|
s812751849 | p02389 | u687567104 | 1523447911 | Python | Python | py | Runtime Error | 0 | 0 | 78 | a = int(input())
b = int(input())
sum = (a*2) + (b*2)
print(a*b)
print(sum)
|
s541851082 | p02389 | u687567104 | 1523447911 | Python | Python | py | Runtime Error | 0 | 0 | 78 | a = int(input())
b = int(input())
sum = (a*2) + (b*2)
print(a*b)
print(sum)
|
s712032178 | p02389 | u687567104 | 1523447981 | Python | Python | py | Runtime Error | 0 | 0 | 90 | a = int(input())
b = int(input())
sum = (a*2) + (b*2)
sum2 = a*b
print(sum2)
print(sum)
|
s358534639 | p02389 | u687567104 | 1523448092 | Python | Python | py | Runtime Error | 0 | 0 | 69 | a = int(input())
b = int(input())
print(a*b)
print( (a*2) + (b*2) )
|
s854560165 | p02389 | u687567104 | 1523448167 | Python | Python | py | Runtime Error | 0 | 0 | 69 | a = int(input())
b = int(input())
print(a*b)
print( (a*2) + (b*2) )
|
s760843251 | p02389 | u687567104 | 1523448361 | Python | Python | py | Runtime Error | 0 | 0 | 69 | a = int(input())
b = int(input())
print(a*b)
print( (a*2) + (b*2) )
|
s344857138 | p02389 | u687567104 | 1523448414 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a = int(input())
b = int(input())
print(a*b, (a*2) + (b*2) )
|
s272049640 | p02389 | u638961225 | 1523453620 | Python | Python3 | py | Runtime Error | 0 | 0 | 278 |
#include<iostream>
void cal_area(a,b){
return a*b;
}
void cal_parimeter(a,b){
return 2*(a+b);
}
output(a,b){
print(a << " " << b);
}
void input(){
std::cin >> a >> b;
output(cal_area(a,b), cal_parimeter(a,b));
}
int main(){
input();
return 0;
}
|
s107482299 | p02389 | u638961225 | 1523453949 | Python | Python3 | py | Runtime Error | 0 | 0 | 291 |
#include<iostream>
void cal_area(a,b){
return a*b;
}
void cal_parimeter(a,b){
return 2*(a+b);
}
output(a,b){
print(a << " " << b);
}
void input(){
int a, b;
std::cin >> a >> b;
output(cal_area(a,b), cal_parimeter(a,b));
}
int main(){
input();
return 0;
}
|
s028082056 | p02389 | u861315468 | 1523457413 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a=float(input())
b=float(input())
print(a*b," ",2*a+2*b)
|
s400114771 | p02389 | u861315468 | 1523457724 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a=float(input)
b=float(input)
print(a*b," ",2*a+2*b)
|
s149292830 | p02389 | u861315468 | 1523458130 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a=float(input())
b=float(input())
print(a*b," ",2*(a+b))
|
s714747303 | p02389 | u861315468 | 1523458277 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a=float(input())
b=float(input())
print(a*b," ",2*(a+b))
|
s205791194 | p02389 | u481571686 | 1523498098 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a=float(input())
b=float(input())
c=a*b
d=(a+b)*2
print(c,d)
|
s761018971 | p02389 | u481571686 | 1523498148 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a=float(input())
b=float(input())
c=a*b
d=(a+b)*2
print(c,d)
|
s803990969 | p02389 | u481571686 | 1523498432 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a,b=map(int,input().split())
c=a*b
d=(a+b)*2
print(c,d)
|
s723151660 | p02389 | u481571686 | 1523498548 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a,b=map(int,input().split())
c=a*b
d=(a+b)*2
print(c,d)
|
s852182432 | p02389 | u398978447 | 1523501336 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 |
print("縦と横の長さを入力")
a=int(input("a:"))
b=int(input("b:"))
print("面積:",a*b)
print("周の長さ",a*2+b*2)
|
s343800262 | p02389 | u398978447 | 1523503150 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | print("縦と横の長さを入力")
a=int(input("a:"))
b=int(input("b:"))
print(a*b)
print(a*2+b*2)
|
s843423229 | p02389 | u398978447 | 1523503216 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 |
a=int(input("a:"))
b=int(input("b:"))
print(a*b)
print(a*2+b*2)
|
s605216759 | p02389 | u058074886 | 1523505745 | Python | Python | py | Runtime Error | 0 | 0 | 149 | x=input().split()
a=int(x[0])
b=int(x[1])
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")
|
s332545925 | p02389 | u372207695 | 1523512183 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | i = input()
i.split()
a = i[0]
b = i[1]
s = a * b
l = 2 * a + 2 * b
print(s,l)
|
s206903213 | p02389 | u372207695 | 1523512211 | Python | Python3 | py | Runtime Error | 20 | 5592 | 92 | i = input()
i.split()
a = int(i[0])
b = int(i[2])
s = a * b
l = 2 * a + 2 * b
print(s,l)
|
s073632666 | p02389 | u398978447 | 1523515025 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | print("縦と横の長さを入力")
a=float(input("a:"))
b=float(input("b:"))
print(a*b)
print(a*2+b*2)
|
s911111387 | p02389 | u398978447 | 1523517141 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | print("縦と横の長さを入力")
a=int(input())
b=int(input())
print(a*b)
print(a*2+b*2)
|
s001575733 | p02389 | u638961225 | 1523536208 | Python | Python3 | py | Runtime Error | 0 | 0 | 162 |
#include <iostream>
int main(){
int a, b;
std::cin >> a >> b;
if(a>=1 && b<=100){
std::cout << a*b << " " << 2*(a+b);
}
return 0;
}
|
s971198413 | p02389 | u762302064 | 1523537467 | Python | Python | py | Runtime Error | 0 | 0 | 135 | a,b=map(int,input().split())
while a<=1 or 100<=a:
while b<=1 or 100<=b:
a,b=int(input());
S=a*b;
L=a+a+b+b;
print(S,L);
|
s973707457 | p02389 | u687567104 | 1523538006 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a = int(input())
b = int(input())
print(a*b, 2*(a+b) )
|
s859609165 | p02389 | u687567104 | 1523538063 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a = int(input())
b = int(input())
print(a*b, 2*(a+b) )
|
s508962382 | p02389 | u687567104 | 1523538103 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a = int(input())
b = int(input())
print(a*b)
print( 2*(a+b) )
|
s314816013 | p02389 | u762302064 | 1523538153 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | a,b=map(int,input().split())
while a<=1 or 100<=a:
while b<=1 or 100<=b:
a,b=int(input());
S=a*b;
L=a+a+b+b;
print(S,L);
|
s660843783 | p02389 | u687567104 | 1523538365 | Python | Python | py | Runtime Error | 0 | 0 | 123 | #include<iostream>
int main()
{
int a,b;
std::cin >> a >> b;
std::cout << a*b << "/n";
std::cout << 2*(a+b);
return 0;
}
|
s872771541 | p02389 | u687567104 | 1523538538 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a = int(input())
b = int(input())
print( a*b, 2*(a+b) )
|
s839638183 | p02389 | u687567104 | 1523538613 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a = int(input())
b = int(input())
print( a*b, 2*(a+b) )
|
s856998479 | p02389 | u687567104 | 1523539047 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a,b = map(int, input().split())
print( a*b, 2*(a+b) )
|
s911570661 | p02389 | u687567104 | 1523539090 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a,b = map(int, input().split())
print( a*b, 2*(a+b) )
|
s794013033 | p02389 | u564105430 | 1523543369 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a=int(input())
b=int(input())
print(a*b)
print(2*a+2*b)
|
s271540008 | p02389 | u728137020 | 1523545023 | Python | Python | py | Runtime Error | 0 | 0 | 115 | #16D8101026D 小野誠志郎 rikuya18 python Visual Stadio
A=int(input())
B=int(input())
print(A*B," ",2*A+2*B)
|
s299420506 | p02389 | u728137020 | 1523545559 | Python | Python | py | Runtime Error | 0 | 0 | 55 | A=int(input())
B=int(input())
print(A*B," ",2*A+2*B)
|
s101579458 | p02389 | u728137020 | 1523545721 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | A=int(input())
B=int(input())
print(A*B," ",2*A+2*B)
|
s155286258 | p02389 | u728137020 | 1523545787 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | A=int(input(" "))
B=int(input(" "))
print(A*B," ",2*A+2*B)
|
s556886039 | p02389 | u728137020 | 1523546140 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | A=int(input())
B=int(input())
print(A*B," ",(2*A)+(2*B))
|
s822090028 | p02389 | u728137020 | 1523546265 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | A=int(input(""))
B=int(input(""))
print(A*B," ",(2*A)+(2*B))
|
s430927586 | p02389 | u095590628 | 1523580522 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | ab = [int(n) for n in input().split()]
S = ab[0]*ab[1]
L = 2*ab[0] + 2*ab[1]
print(S + " " + L)
|
s095590619 | p02389 | u095590628 | 1523580682 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | ab = [int(n) for n in input().split()]
S = ab[0]*ab[1]
L = 2*ab[0] + 2*ab[1]
print(" ".join(str,map([S,L])))
|
s565062398 | p02389 | u398978447 | 1523585285 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | print("縦と横の長さを入力")
a=int(input())
b=int(input())
print(a*b)
print(a*2+b*2)
|
s180132239 | p02389 | u398978447 | 1523585303 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | print("縦と横の長さを入力")
a=int(input())
b=int(input())
print(str(a*b))
print(str(a*2+b*2))
|
s930951692 | p02389 | u398978447 | 1523585465 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | print("縦と横の長さを入力")
a=int(input())
b=int(input())
print(a*b,a*2+b*2)
|
s364889341 | p02389 | u967096686 | 1523595304 | Python | Python | py | Runtime Error | 0 | 0 | 93 | num1=int(input("整数aを入力"))
num2=int(input("整数bを入力"))
s=num1*num2
print(s)
|
s222996420 | p02389 | u967096686 | 1523595422 | Python | Python | py | Runtime Error | 0 | 0 | 57 | num1=int(input())
num2=int(input())
s=num1*num2
print(s)
|
s054000352 | p02389 | u967096686 | 1523595444 | Python | Python | py | Runtime Error | 0 | 0 | 53 | num1=int(input)
num2=int(input)
s=num1*num2
print(s)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.