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
s959355754
p02389
u830563109
1513438623
Python
Python3
py
Runtime Error
0
0
66
a = int(input()),b = int(input()) m = a*b,s = a+b*2 print("m,s")
s960313768
p02389
u830563109
1513438862
Python
Python3
py
Runtime Error
0
0
39
x, y = input().split() print(x*y,x+y*2)
s550360229
p02389
u264730086
1513665627
Python
Python3
py
Runtime Error
0
0
57
a,b = list(map(int,input().split(" ")) print(a*b,a*2+b*2)
s555919859
p02389
u506705885
1513992767
Python
Python3
py
Runtime Error
0
0
46
a,b=map(int,input().split()) print(a*b,(a+b)*2
s992602957
p02389
u801823223
1514297424
Python
Python3
py
Runtime Error
0
0
83
value = input().split() print(str(value[0]*value[1])+" "+str((value[0]+value[1])*2)
s342814560
p02389
u589139267
1514355286
Python
Python3
py
Runtime Error
0
0
59
a = int(input()) b = int(input()) S = a * b L = 2 * (a + b)
s667543610
p02389
u589139267
1514355327
Python
Python3
py
Runtime Error
0
0
70
a = int(input()) b = int(input()) S = a * b L = 2 * (a + b) print(S L)
s357273840
p02389
u589139267
1514355354
Python
Python3
py
Runtime Error
0
0
72
a = int(input()) b = int(input()) S = a * b L = 2 * (a + b) print("S L")
s668492116
p02389
u822038573
1514362823
Python
Python3
py
Runtime Error
0
0
29
print (a*b) print (2*a + 2*b)
s548882436
p02389
u801823223
1514383291
Python
Python3
py
Runtime Error
0
0
79
spam=input().split(' ') print(' '.join(spam[0] * spam[1], 2*(spam[0]+spam[1])))
s390110355
p02389
u801823223
1514383330
Python
Python3
py
Runtime Error
0
0
88
spam=input().split(' ') print(' '.join(spam[0] * spam[1], 2*(spam[0]+spam[1]))) return 0
s085372229
p02389
u801823223
1514383362
Python
Python3
py
Runtime Error
0
0
79
spam=input().split(' ') print(' '.join(spam[0] * spam[1], 2*(spam[0]+spam[1])))
s445513821
p02389
u841567836
1515043364
Python
Python3
py
Runtime Error
0
0
78
l = input().split() a = l[0] b = l[1] L = 2 * (a + b) S = a * b print(S, L)
s977804517
p02389
u841567836
1515043567
Python
Python3
py
Runtime Error
0
0
85
l = map(int, raw_input().split()) S = l[0] * l[1] L = 2 * (l[0] + l[1]) print(S, L)
s436205832
p02389
u841567836
1515043613
Python
Python3
py
Runtime Error
0
0
83
l = map(int, input().split()) S = l[0] * l[1] L = 2 * (l[0] + l[1])   print(S, L)
s541967430
p02389
u595280169
1515055791
Python
Python3
py
Runtime Error
0
0
333
print("ようこそ!面積計算プログラムへ!") print("ーーーーーーーーーーーーーーーー") print("") #実際の計算 hight = int(input("高さを入力してください:")) wide = int(input("長さを入力してください:")) area = hight*wide length = (hight+wide)*2 print(area) print(length)
s105063925
p02389
u595280169
1515055821
Python
Python3
py
Runtime Error
0
0
187
hight = int(input("高さを入力してください:")) wide = int(input("長さを入力してください:")) area = hight*wide length = (hight+wide)*2 print(area) print(length)
s770964138
p02389
u595280169
1515056184
Python
Python3
py
Runtime Error
0
0
82
a = int(input()) b = int(input()) area = a*b length = (a+b)*2 print(area,length)
s119258580
p02389
u100875060
1515207898
Python
Python
py
Runtime Error
0
0
69
x = map(int, raw_input().split()) print(x[0]*x[1]+' '+(x[0]+x[1])*2)
s466309093
p02389
u100875060
1515207914
Python
Python3
py
Runtime Error
0
0
69
x = map(int, raw_input().split()) print(x[0]*x[1]+' '+(x[0]+x[1])*2)
s561012304
p02389
u100875060
1515208104
Python
Python
py
Runtime Error
0
0
66
a,b = map(int, raw_input().split()) print x[0]*x[1],(x[0]+x[1])*2
s040713881
p02389
u100875060
1515208170
Python
Python3
py
Runtime Error
0
0
55
a,b = map(int, raw_input().split()) print(a*b,(a+b)*2)
s622944488
p02389
u072855832
1515484055
Python
Python3
py
Runtime Error
0
0
45
x = int(input()) y = int(input()) print(x*y)
s521890563
p02389
u072855832
1515487610
Python
Python3
py
Runtime Error
0
0
62
x = int(input()) y = int(input()) print(x*y) print(2*x+2*y)
s465143160
p02389
u072855832
1515488048
Python
Python3
py
Runtime Error
0
0
61
x = int(input()) y = int(input()) print((x*y), (2*x+2*y))
s090925708
p02389
u299257375
1515751185
Python
Python3
py
Runtime Error
0
0
55
ab = int(input().split()) print(a*b, a*2+b*2, sep=" ")
s815704262
p02389
u299257375
1515751289
Python
Python3
py
Runtime Error
0
0
71
ab = int(input().split()) print(ab[0]*ab[1], ab[0]*2+ab[1]*2, sep=" ")
s838700459
p02389
u726789377
1516019880
Python
Python3
py
Runtime Error
0
0
98
data = input().split() a = data[0] b = data[1] print(int(a) * int(b)) print(2 * (int(a) + int(b))
s776938495
p02389
u726789377
1516019988
Python
Python3
py
Runtime Error
0
0
91
data = input().split() a = data[0] b = data[1] print(int(a) * int(b),2 * (int(a) + int(b))
s566552038
p02389
u726789377
1516020026
Python
Python3
py
Runtime Error
0
0
92
data = input().split() a = data[0] b = data[1] print(int(a) * int(b), 2 * (int(a) + int(b))
s925443366
p02389
u726789377
1516020064
Python
Python3
py
Runtime Error
0
0
92
data = input().split() a = data[0] b = data[1] print(int(a) * int(b), 2 * (int(a) + int(b))
s617278979
p02389
u201482750
1516074893
Python
Python3
py
Runtime Error
0
0
41
a=int(input()) b=int(input()) print(a*b)
s904873014
p02389
u201482750
1516074946
Python
Python3
py
Runtime Error
0
0
53
a=int(input()) b=int(input()) print(a*b," ",2*(a+b))
s668250923
p02389
u201482750
1516075057
Python
Python3
py
Runtime Error
0
0
53
a=int(input()) b=int(input()) print(a*b,' ',2*(a+b))
s452398407
p02389
u059121893
1516204582
Python
Python3
py
Runtime Error
0
0
46
a = int(input()) b = int(input()) print(a*b)
s421951700
p02389
u059121893
1516204693
Python
Python3
py
Runtime Error
0
0
65
a = int(input()) b = int(input()) print(a*b) print(2*( a + b ))
s705140553
p02389
u059121893
1516204730
Python
Python3
py
Runtime Error
0
0
74
a = int(input()) b = int(input()) print(a*b,end = '') print(2*( a + b ))
s136100236
p02389
u059121893
1516204777
Python
Python3
py
Runtime Error
0
0
75
a = int(input()) b = int(input()) print(a*b,end = ' ') print(2*( a + b ))
s709834755
p02389
u538029805
1516276327
Python
Python
py
Runtime Error
0
0
98
while True a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * a + 2* b)
s081990808
p02389
u538029805
1516276462
Python
Python
py
Runtime Error
0
0
82
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * a + 2* b)
s067787883
p02389
u538029805
1516276634
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * (a + b))
s805643854
p02389
u538029805
1516277762
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * (a + b))
s030393691
p02389
u538029805
1516277830
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * (a + b))
s542247976
p02389
u538029805
1516278123
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * (a + b))
s527057996
p02389
u538029805
1516280718
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * (a + b))
s410037764
p02389
u538029805
1516280742
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * (a + b))
s428911338
p02389
u538029805
1516280800
Python
Python3
py
Runtime Error
0
0
81
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * (a + b))
s085799963
p02389
u538029805
1516280817
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() if a,b > 1 and a,b < 100 print (a * b,2 * (a + b))
s169082551
p02389
u742505495
1517385489
Python
Python3
py
Runtime Error
0
0
49
a,b=map(int(input().split())) print(a*b,2*(a+b))
s960797613
p02389
u640809202
1517656250
Python
Python3
py
Runtime Error
0
0
80
l = input().split() x = int(l[0]) y = int(l[1]) print(x * y + " " + 2*x + 2*y)
s862383347
p02389
u640809202
1517656521
Python
Python3
py
Runtime Error
0
0
54
a, b= map(int, input().split()) print a*b, a*2 + b*2
s059630210
p02389
u640809202
1517660219
Python
Python3
py
Runtime Error
0
0
56
a, b = map(int(input().split())) print(a*b), (a*2+b*2)
s985067763
p02389
u798565376
1517680257
Python
Python3
py
Runtime Error
0
0
138
list = map(int(), input().split()) area = list[0] * list[1] perimeter = list[0] * 2 + list[1] * 2 print(str(area) + " " + str(perimeter))
s648252467
p02389
u798565376
1517680399
Python
Python3
py
Runtime Error
0
0
130
list = map(int(), input().split()) area = list[0] * list[1] perimeter = list[0] * 2 + list[1] * 2 '{} {}'.format(area, perimeter)
s677653682
p02389
u798565376
1517680525
Python
Python3
py
Runtime Error
0
0
132
list = map(int(), input().split()) area = list[0] * list[1] perimeter = list[0] * 2 + list[1] * 2 print('%d %d' (area, perimeter))
s215857255
p02389
u798565376
1517680601
Python
Python3
py
Runtime Error
0
0
139
list = map(int(), input().split()) area = list[0] * list[1] perimeter = list[0] * 2 + list[1] * 2 print('{0} {1}.format(area, perimeter))
s535049542
p02389
u798565376
1517680633
Python
Python3
py
Runtime Error
0
0
170
list = map(int(), input().split()) area = list[0] * list[1] perimeter = list[0] * 2 + list[1] * 2 print(area) print(perimeter) # print('{0} {1}.format(area, perimeter))
s083529424
p02389
u798565376
1517680643
Python
Python3
py
Runtime Error
0
0
168
list = map(int, input().split()) area = list[0] * list[1] perimeter = list[0] * 2 + list[1] * 2 print(area) print(perimeter) # print('{0} {1}.format(area, perimeter))
s713336999
p02389
u798565376
1517681213
Python
Python3
py
Runtime Error
0
0
128
l = list(map(int, input().split())) area = l[0] * l[1] perimeter = l[0] * 2 + l[1] * 2 print('{0} {1}.format(area, perimeter))
s932848886
p02389
u245495144
1517804482
Python
Python
py
Runtime Error
0
0
45
a=input("") b=input("") print(a*b),(2*a+2*b)
s663629105
p02389
u441437435
1517992345
Python
Python3
py
Runtime Error
0
0
74
import sys a,b = map(int(sys.stdin.readline().split())) print(a*b,2(a+b))
s172614555
p02389
u996463517
1518098869
Python
Python3
py
Runtime Error
0
0
59
a,b = map(int,input()) s = a*b l = 2*a + 2*b print(s,l)
s430813403
p02389
u442426662
1518108266
Python
Python3
py
Runtime Error
0
0
76
a=input() a=a.split(" ") print(int(a[0])*int(a[1]),2*(int(a[0])+int(b[0])))
s691752405
p02389
u613627875
1518152487
Python
Python3
py
Runtime Error
0
0
61
a = int(input()) b = int(input()) print(a*b) print(2a + 2b)
s499143638
p02389
u613627875
1518152570
Python
Python3
py
Runtime Error
0
0
63
a = int(input()) b = int(input()) print(a*b) print(2*a + 2*b)
s075018205
p02389
u613627875
1518152599
Python
Python3
py
Runtime Error
0
0
61
a = int(input()) b = int(input()) print(a*b) print(2*a+2*b)
s934779238
p02389
u613627875
1518152747
Python
Python3
py
Runtime Error
0
0
54
a = int(input()) b = int(input()) print(a*b 2*(a+b))
s812224914
p02389
u313021086
1518163405
Python
Python3
py
Runtime Error
0
0
84
a = int(input("")) b = int(input("")) print(str(a * b) + " " + str(2 * a + 2 * b))
s409741426
p02389
u313021086
1518163446
Python
Python3
py
Runtime Error
0
0
94
a = int(input("")) b = int(input("")) print(str(a * b) + " " + str(2 * a + 2 * b)) print("")
s437977219
p02389
u313021086
1518163475
Python
Python3
py
Runtime Error
0
0
84
a = int(input("")) b = int(input("")) print(str(a * b) + " " + str(2 * a + 2 * b))
s274753209
p02389
u313021086
1518165834
Python
Python
py
Runtime Error
0
0
80
a, b = map(int, input().split()) print(str(a * b) + " " + str(2 * a + 2 * b))
s334139318
p02389
u496101640
1518380315
Python
Python3
py
Runtime Error
0
0
73
x = int(input())**2 y = int(input())**2 print("{0:d} {1:d}".format(x,y))
s997503677
p02389
u722929725
1518417079
Python
Python
py
Runtime Error
0
0
129
rect = input() listrect = rect.split(" ") sum = 0 for i in range(len(listrect)) sum = sum + int(listrect[i]) * 2 print(sum)
s910813229
p02389
u373340964
1519093348
Python
Python3
py
Runtime Error
0
0
56
a, b = map(int, input().split()) print(a * b, 2(a + b))
s307789536
p02389
u373340964
1519093646
Python
Python3
py
Runtime Error
0
0
56
a, b = map(int, input().split()) print(a * b, 2(a + b))
s046135584
p02389
u373340964
1519093784
Python
Python3
py
Runtime Error
0
0
56
a, b = map(int, input().split()) print(a * b, 2(a + b))
s390944787
p02389
u387507798
1519361489
Python
Python3
py
Runtime Error
0
0
64
h, w = map(int, input().split()) print(h*w) print(2*h + 2*w)
s735372093
p02389
u387507798
1519361673
Python
Python3
py
Runtime Error
0
0
60
h, w = map(int, src.input().split()) print(h*w, 2*h+2*w)
s172113888
p02389
u387507798
1519361682
Python
Python3
py
Runtime Error
0
0
56
h, w = map(int, input().split()) print(h*w, 2*h+2*w)
s600611272
p02389
u005739171
1519542845
Python
Python3
py
Runtime Error
0
0
100
a = int(input('tate')) b = int(input('yoko')) area = a*b lenght = 2a + 2b print(area) print(lenght)
s859713309
p02389
u005739171
1519542989
Python
Python3
py
Runtime Error
0
0
102
a = int(input('tate')) b = int(input('yoko')) area = a*b lenght = 2*a + 2*b print(area) print(lenght)
s331534436
p02389
u005739171
1519543012
Python
Python3
py
Runtime Error
0
0
102
a = int(input('tate')) b = int(input('yoko')) area = a*b lenght = 2*a + 2*b print(area) print(lenght)
s930692678
p02389
u005739171
1519543098
Python
Python3
py
Runtime Error
0
0
102
a = int(input('tate')) b = int(input('yoko')) area = a*b lenght = 2*a + 2*b print(area) print(lenght)
s259113213
p02389
u005739171
1519543114
Python
Python3
py
Runtime Error
0
0
94
a = int(input('')) b = int(input('')) area = a*b lenght = 2*a + 2*b print(area) print(lenght)
s630203037
p02389
u316702155
1519615888
Python
Python3
py
Runtime Error
0
0
88
z = input() z = z.split( ) a = z[0] * z[1] b = z[0] * 2 + z[1] * 2 print(a + " " + b)
s932195837
p02389
u592769330
1520155385
Python
Python3
py
Runtime Error
0
0
58
a=input() b=input() print("{} {}".format(a*b,a**2+b**2))
s268661082
p02389
u592769330
1520155467
Python
Python3
py
Runtime Error
0
0
53
a,b=input() print("{0} {1}".format(a*b,a**2+b**2))
s134711465
p02389
u592769330
1520155513
Python
Python3
py
Runtime Error
0
0
62
a=input() b=input() print('{0} {1}'.format(a*b,a**2+b**2))
s651096920
p02389
u806005289
1520239967
Python
Python3
py
Runtime Error
0
0
95
import math a=int(input()) b=int(input()) c=a*b d=math.sqrt(a*a+b*b) print(str(c)+" "+str(d))
s045166677
p02389
u806005289
1520240519
Python
Python3
py
Runtime Error
0
0
74
a=int(input()) b=int(input()) c=a*b d=2*a+2*b print(str(c)+" "+str(d))
s763597420
p02389
u508054630
1520348216
Python
Python
py
Runtime Error
0
0
97
a, b = list(map(int,input().split(' '))) A = int(a*b) S=int(2*(a+b)) print(str(A) + ' '+ str(S))
s022130911
p02389
u508054630
1520348300
Python
Python
py
Runtime Error
0
0
110
a = list(map(int,input().split(' '))) A = int(a[0] * a[1]) S=int(2*(a[0] + a[1])) print(str(A) + ' '+ str(S))
s605114834
p02389
u770401549
1520511977
Python
Python
py
Runtime Error
0
0
30
a,b=imput() print a*b,(a+b)*2
s201854122
p02389
u770401549
1520512018
Python
Python
py
Runtime Error
0
0
30
a,b=input() print a*b,(a+b)*2
s924415671
p02389
u770401549
1520518689
Python
Python
py
Runtime Error
0
0
28
a,b=map() print a*b,(a+b)*2
s454301156
p02389
u162658314
1520583588
Python
Python3
py
Runtime Error
0
0
46
a=int(input()) b=int(input()) print(a*2+b*2)
s031555050
p02389
u009101629
1520738116
Python
Python3
py
Runtime Error
0
0
95
lis = [int(x)for x in input().split()] print(str(lis[0]*lis[1]) + " " + str((lis[0]+lis[1])*2)
s732885826
p02389
u087819206
1520779864
Python
Python3
py
Runtime Error
0
0
61
a, b = int(input()), int(input()) print(a * b, 2 * (a + b))
s800472953
p02389
u087819206
1520780000
Python
Python3
py
Runtime Error
0
0
64
a, b = map(int, raw_input().split()) print(a * b, 2 * (a + b))
s446268579
p02389
u087819206
1520780043
Python
Python3
py
Runtime Error
0
0
79
x = map(int, raw_input().split()) a, b = x[0], x[1] print(a * b, 2 * (a + b))