s_id string | p_id string | u_id string | date string | language string | original_language string | filename_ext string | status string | cpu_time string | memory string | code_size string | code string | error string | stdout string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s126068194 | p03997 | u553070631 | 1570333064 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 68 | a=int(input())
b=int(input())
h=int(input())
print(int(((a+b)*h/2))
| File "/tmp/tmpnpxbpb1i/tmpl2gyfn7s.py", line 4
print(int(((a+b)*h/2))
^
SyntaxError: '(' was never closed
| |
s785977336 | p03997 | u396890425 | 1569782016 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 49 | a,b,h=map(int, input().split());print((a+b)*h//2) | Traceback (most recent call last):
File "/tmp/tmp5h0y8keq/tmp4xe4n419.py", line 1, in <module>
a,b,h=map(int, input().split());print((a+b)*h//2)
^^^^^^^
EOFError: EOF when reading a line
| |
s568305226 | p03997 | u396890425 | 1569781840 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 49 | a,b,h=map(int, input().split());print((a+b)*h//2) | Traceback (most recent call last):
File "/tmp/tmpznw_pd5o/tmp_et3yrcn.py", line 1, in <module>
a,b,h=map(int, input().split());print((a+b)*h//2)
^^^^^^^
EOFError: EOF when reading a line
| |
s754809574 | p03997 | u396890425 | 1569781714 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 48 | a,b,h=map(int, input().split());print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmp8dim5x0m/tmp171um6jg.py", line 1, in <module>
a,b,h=map(int, input().split());print((a+b)*h/2)
^^^^^^^
EOFError: EOF when reading a line
| |
s903101709 | p03997 | u821989875 | 1569526517 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 97 | # -*- coding: utf-8 -*-
a = int(input())
b = int(input())
h = int(input())
return (a + b) * h / 2 | File "/tmp/tmpm45gwvqi/tmpz63eoyhm.py", line 5
return (a + b) * h / 2
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s259788820 | p03997 | u174273188 | 1569008012 | Python | PyPy3 (2.4.0) | py | Runtime Error | 186 | 38256 | 126 | def resolve():
a, b, h = map(int, input().split())
print((a + b) * h // 2)
if __name__ == "__main__":
resolve()
| Traceback (most recent call last):
File "/tmp/tmpnkzwnoin/tmpc8ellkmu.py", line 7, in <module>
resolve()
File "/tmp/tmpnkzwnoin/tmpc8ellkmu.py", line 2, in resolve
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s248445860 | p03997 | u174273188 | 1569007154 | Python | PyPy3 (2.4.0) | py | Runtime Error | 166 | 38256 | 132 | def resolve():
a, b, h = list(map(int, input().split()))
print((a + b) * h // 2)
if __name__ == "__main__":
resolve()
| Traceback (most recent call last):
File "/tmp/tmp2ex2p1zp/tmpt7ojscx6.py", line 7, in <module>
resolve()
File "/tmp/tmp2ex2p1zp/tmpt7ojscx6.py", line 2, in resolve
a, b, h = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s453196782 | p03997 | u644778646 | 1568857089 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3188 | 63 | a=int(input())
b=int(input())
h=int(input())
print((a+b)*h/2) | File "/tmp/tmp0hjq243z/tmp30gpnu2g.py", line 4
print((a+b)*h/2)
^
SyntaxError: invalid character '*' (U+FF0A)
| |
s797658412 | p03997 | u391340825 | 1568234768 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 183 |
def main():
linie = input()
vector = [int(x) for x in linie.split()]
x = vector[0]
y = vector[1]
h = vector[2]
print(((x + y) * h) // 2)
if __name__ == "__main__":
main() | Traceback (most recent call last):
File "/tmp/tmp7crbbein/tmpz9y9dtc_.py", line 12, in <module>
main()
File "/tmp/tmp7crbbein/tmpz9y9dtc_.py", line 4, in main
linie = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s921130776 | p03997 | u414558682 | 1568174169 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 340 | S = {}
A = input()
B = input()
C = input()
S['a'] = A
S['b'] = B
S['c'] = C
player = 'a'
for i in range(len(A) + len(B) + len(C)):
# pass
# print(S[player][0])
S[player] = S[player][1:]
if len(S[player]) == 0:
break
player = S[player][0]
# print(A)
# print(B)
# print(C)
print(player.upper()) | Traceback (most recent call last):
File "/tmp/tmp6dae2eym/tmpwtpg36yw.py", line 3, in <module>
A = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s584887394 | p03997 | u414558682 | 1568174001 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 335 | S = {}
A = input()
B = input()
C = input()
S['a'] = A
S['b'] = B
S['c'] = C
player = 'a'
for i in range(len(A) + len(B) + len(C)):
# pass
# print(S[player][0])
player = S[player][0]
S[player] = S[player][1:]
if len(S[player]) == 0:
break
# print(A)
# print(B)
# print(C)
print(player.upper()) | Traceback (most recent call last):
File "/tmp/tmp9x2q6d59/tmp05kah9cc.py", line 3, in <module>
A = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s859863112 | p03997 | u414558682 | 1568173901 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 335 | S = {}
A = input()
B = input()
C = input()
S['a'] = A
S['b'] = B
S['c'] = C
player = 'a'
for i in range(len(A) + len(B) + len(C)):
# pass
# print(S[player][0])
player = S[player][0]
S[player] = S[player][1:]
if len(S[player]) == 0:
break
# print(A)
# print(B)
# print(C)
print(player.upper()) | Traceback (most recent call last):
File "/tmp/tmpoonzkxkp/tmpv1ff4sv1.py", line 3, in <module>
A = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s072112369 | p03997 | u798316285 | 1568071151 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 48 | a,b,h=map(int,input().split())
print((a+b)*h//2) | Traceback (most recent call last):
File "/tmp/tmpr8lm6mmr/tmp5mkx91td.py", line 1, in <module>
a,b,h=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s772512868 | p03997 | u117193815 | 1567923090 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 73 | a = int(input())
b = int(input())
c = int(input())
print(int(((a+b)*c)/2) | File "/tmp/tmp07i94mgq/tmpm8p56f5y.py", line 4
print(int(((a+b)*c)/2)
^
SyntaxError: '(' was never closed
| |
s089627121 | p03997 | u206873502 | 1567653014 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 82 | a=int(input())
b=int(input())
h=int(input())
s=int((a+b)*h/2)
print("{}".format(s) | File "/tmp/tmpwbhuyk5j/tmpb2_ymyj2.py", line 5
print("{}".format(s)
^
SyntaxError: '(' was never closed
| |
s684759351 | p03997 | u206873502 | 1567652313 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 72 | a=int(input())
b=int(input())
h=int(input())
print({}.format((a+b)*h/2)) | Traceback (most recent call last):
File "/tmp/tmpqt68y36i/tmpdwqecd91.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s313642535 | p03997 | u539018546 | 1567642866 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 69 | x=[]
for i in range(3):
x[i]=int(input())
print((x[0]+x[1])*x[2]/2) | Traceback (most recent call last):
File "/tmp/tmpi7sznsr9/tmpq8q8ekr0.py", line 3, in <module>
x[i]=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s069052433 | p03997 | u539018546 | 1567642804 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 70 | x=[]
for i in range(3):
x[i]=int(input())
print((x[0]+x[1])*x[2]/2) | File "/tmp/tmpx33mahw9/tmplehvxazt.py", line 4
print((x[0]+x[1])*x[2]/2)
^
IndentationError: unindent does not match any outer indentation level
| |
s196619919 | p03997 | u426964396 | 1566835121 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3056 | 203 | import time
def trapezium(a,b,d):
return (a+b)*d/2
A=int(input)
B=int(input)
D=int(input)
S=trapezium(A,B,D)
for i in range(20):
print(chr(9608),end='')
time.sleep(0.10)
print('\n',S)
input() | Traceback (most recent call last):
File "/tmp/tmpwrjic9i0/tmp_6os4wzt.py", line 4, in <module>
A=int(input)
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s811857834 | p03997 | u640603056 | 1566528298 | Python | Python (3.4.3) | py | Runtime Error | 19 | 2940 | 63 | a, b, h = map(int, input().split())
s = (a+b)*h/2
print(int(s)) | Traceback (most recent call last):
File "/tmp/tmprhfk7r_z/tmp0c2wr23c.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s900025240 | p03997 | u175489229 | 1566528278 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 74 | a = int(input())
b = int(input())
h = int(input())
x = (a + b)h/2
print(x) | File "/tmp/tmpg6tocbcr/tmpn3zpc4tv.py", line 4
x = (a + b)h/2
^
SyntaxError: invalid syntax
| |
s851726089 | p03997 | u640603056 | 1566528211 | Python | Python (3.4.3) | py | Runtime Error | 19 | 2940 | 57 | a, b, h = map(int, input().split())
print((a+b)*int(h/2)) | Traceback (most recent call last):
File "/tmp/tmpkkydesm6/tmp9auxw7e1.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s299815843 | p03997 | u175489229 | 1566528130 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 58 | a,b,h = map(int,input().split())
x = (a + b) // h
print(x) | Traceback (most recent call last):
File "/tmp/tmpw7nx2a_k/tmpb8ppq7iq.py", line 1, in <module>
a,b,h = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s786124597 | p03997 | u640603056 | 1566528083 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 61 | a, b, h = map(int, input().split())
S = (a+b)* h / 2
print(S) | Traceback (most recent call last):
File "/tmp/tmpsbtyg685/tmp00mmnz4p.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s334988861 | p03997 | u640603056 | 1566528020 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 71 | a, b, h = map(int, input().split())
S = (a+b)/2 * h
S = int(S)
print(S) | Traceback (most recent call last):
File "/tmp/tmp2xk0_ffn/tmp_5g7z8c5.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s187375074 | p03997 | u640603056 | 1566527993 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 71 | a, b, h = map(int, input().split())
S = (a+b)/2 * h
S = int(S)
print(S) | Traceback (most recent call last):
File "/tmp/tmpzq8fb2c7/tmpi1cgflbk.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s734668608 | p03997 | u640603056 | 1566527929 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 59 | a, b, h = map(int, input().split())
print(int((a+b)/2 * h)) | Traceback (most recent call last):
File "/tmp/tmpxjnc9utz/tmpzybpwp3f.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s772619628 | p03997 | u640603056 | 1566527899 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 59 | a, b, h = map(int, input().split())
print(int((a+b)/2 * h)) | Traceback (most recent call last):
File "/tmp/tmp10dbddfw/tmp_4831ii3.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s239074551 | p03997 | u717626627 | 1566522256 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 52 |
b = int(input())
h = int(input())
print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmp2kr6adwc/tmpzon8qohs.py", line 2, in <module>
b = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s688243436 | p03997 | u717626627 | 1566522212 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 134 | a = int(input())
b = int(input())
h = int(input())
print(a*b*h/2)a = int(input())
b = int(input())
h = int(input())
print((a+b)*h/2) | File "/tmp/tmpdyr9x_12/tmpuaea7s0g.py", line 5
print(a*b*h/2)a = int(input())
^
SyntaxError: invalid syntax
| |
s418472785 | p03997 | u665367149 | 1566437963 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 96 | a, b, h = [int(i) for i in input().split()]
if h == 0:
print(0)
print((a + b) * h * (1/2)) | Traceback (most recent call last):
File "/tmp/tmppyfikumn/tmpeu1ww2rq.py", line 1, in <module>
a, b, h = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s419677135 | p03997 | u665367149 | 1566437896 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 71 | a, b, h = [int(i) for i in input().split()]
print((a + b) * h * (1/2)) | Traceback (most recent call last):
File "/tmp/tmpvjj5hjwe/tmp5b_abv76.py", line 1, in <module>
a, b, h = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s459443929 | p03997 | u360515075 | 1566407226 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 64 | a = int(input)
b = int(input)
h = int(input)
print ((a+b)*h //2) | Traceback (most recent call last):
File "/tmp/tmpukvvoluu/tmp60p_vyj2.py", line 1, in <module>
a = int(input)
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s314856263 | p03997 | u360515075 | 1566407181 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 55 | a, b, h = map(int, input().split())
print ((a+b)*h //2) | Traceback (most recent call last):
File "/tmp/tmpxjnsdhds/tmp5lqbjfmj.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s871565318 | p03997 | u624075921 | 1565891947 | Python | PyPy3 (2.4.0) | py | Runtime Error | 182 | 38512 | 84 | a = int(input())
b = int(input())
c = int(input())
area = ((a+b)*h)//h
print(area) | Traceback (most recent call last):
File "/tmp/tmpuc7va_la/tmpa9b7rsvu.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s712325716 | p03997 | u453500284 | 1565888698 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 35 | print((input()+input())*input()//2) | Traceback (most recent call last):
File "/tmp/tmpcjvrf_j7/tmpqognnjp1.py", line 1, in <module>
print((input()+input())*input()//2)
^^^^^^^
EOFError: EOF when reading a line
| |
s007672788 | p03997 | u111365362 | 1565709021 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 56 | a,b,h = map(int,input().split())
print( (a+b) * h // 2 ) | Traceback (most recent call last):
File "/tmp/tmp8chljuu2/tmpbk9j7dxc.py", line 1, in <module>
a,b,h = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s568147775 | p03997 | u740047492 | 1565391873 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 66 | a, b, h = [int(input()) for _ i in range(3)]
print(int((a+b)*h/2)) | File "/tmp/tmpp7lk8elq/tmpqk3d_bvn.py", line 1
a, b, h = [int(input()) for _ i in range(3)]
^
SyntaxError: invalid syntax
| |
s786687810 | p03997 | u740047492 | 1565391333 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 58 | a,b,h=[int(input()) for _ i in range(3)]
print((a+b)*h//2) | File "/tmp/tmp4kh21m2_/tmp3d3glpdw.py", line 1
a,b,h=[int(input()) for _ i in range(3)]
^
SyntaxError: invalid syntax
| |
s264881569 | p03997 | u740047492 | 1565391245 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 60 | a,b,c=[int(input()) for _ i in range(3)]
print(int(a+b)*h/2) | File "/tmp/tmpskc04jn0/tmpzu2e0jok.py", line 1
a,b,c=[int(input()) for _ i in range(3)]
^
SyntaxError: invalid syntax
| |
s886655060 | p03997 | u740047492 | 1565391217 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 58 | a,b,c=[int(input()) for _ i in range(3)]
print((a+b)*h//2) | File "/tmp/tmpk49ptahm/tmp5uobp0x_.py", line 1
a,b,c=[int(input()) for _ i in range(3)]
^
SyntaxError: invalid syntax
| |
s075936673 | p03997 | u740047492 | 1565391165 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3060 | 56 | a,b,c=[int(input()) for_i in range(3)]
print((a+b)*h//2) | File "/tmp/tmpl026bhi5/tmp9rmvyepz.py", line 1
a,b,c=[int(input()) for_i in range(3)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s255303328 | p03997 | u330310077 | 1565322910 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 198 | dk = {}
dk["a"] = input()
dk["b"] = input()
dk["c"] = input()
n = "a"
while True:
if len(dk[n]) == 0:
print(n.upper())
break
nn = dk[n][0]
dk[n] = dk[n][1:]
n = nn
| Traceback (most recent call last):
File "/tmp/tmpfe_x8w77/tmpcj7_e_f7.py", line 2, in <module>
dk["a"] = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s966941390 | p03997 | u330310077 | 1565322756 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 204 | dk = {}
dk["a"] = input()
dk["b"] = input()
dk["c"] = input()
n = "a"
while true:
if len(dk[n]) == 0:
return print(n.upper())
break
nn = dk[n][0]
dk[n] = dk[n][1:]
n = nn
| File "/tmp/tmpbc9r303v/tmpzswol812.py", line 9
return print(n.upper())
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s046298586 | p03997 | u297651868 | 1564797961 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 61 | a.b.h= [int(input()) for i in range(3)]
print(int((a+b)*h/2)) | Traceback (most recent call last):
File "/tmp/tmpfsmuokst/tmpn3z9_y0w.py", line 1, in <module>
a.b.h= [int(input()) for i in range(3)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpfsmuokst/tmpn3z9_y0w.py", line 1, in <listcomp>
a.b.h= [int(input()) for i in range(3)]
^^^^^^^
EOFError: EOF when reading a line
| |
s507140697 | p03997 | u839270538 | 1564004822 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 73 | a = int(input())
b = int(input())
c = int(input())
print(h * (a+b) // 2) | Traceback (most recent call last):
File "/tmp/tmpxb5rclzb/tmpwiuwu61z.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s483880907 | p03997 | u920391637 | 1563492386 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 48 | a,b,h=map(int, input().split())
print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmpcd57ayz6/tmpvcx48j12.py", line 1, in <module>
a,b,h=map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s819152031 | p03997 | u920391637 | 1563492304 | Python | Python (3.4.3) | py | Runtime Error | 19 | 3060 | 50 | a,b,h = map(int, input().split())
print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmphnanxrar/tmp6_41ppvh.py", line 1, in <module>
a,b,h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s560566850 | p03997 | u920391637 | 1563492215 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 50 | a,b,c = map(int, input().split())
print((a+b)*c/2) | Traceback (most recent call last):
File "/tmp/tmpjaekr3gw/tmpcib1pjqu.py", line 1, in <module>
a,b,c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s502572600 | p03997 | u920391637 | 1563492165 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 50 | a,b,c = map(int, input().split())
print((a+b)*c/2) | Traceback (most recent call last):
File "/tmp/tmp33arf3eu/tmp9x__bkym.py", line 1, in <module>
a,b,c = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s606764179 | p03997 | u675073679 | 1563484233 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 61 | a,b,h = map(int,input().split())
print(int((a + b) * h / 2)) | Traceback (most recent call last):
File "/tmp/tmp10_woqb1/tmpj7ny18si.py", line 1, in <module>
a,b,h = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s643400902 | p03997 | u675073679 | 1562877270 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 74 | a = input(int())
b = input(int())
h = input(int())
print((a + b) * h / 2) | Traceback (most recent call last):
File "/tmp/tmpo39706mj/tmppu_ezr3s.py", line 1, in <module>
a = input(int())
^^^^^^^^^^^^
EOFError: EOF when reading a line
| 0 |
s269975768 | p03997 | u687044304 | 1562157198 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 150 | # -*- coding:utf-8 -*-
def solve():
a, b, h = list(map(int, input().split()))
print(int((a+b)*h//2))
if __name__ == "__main__":
solve()
| Traceback (most recent call last):
File "/tmp/tmprnhzr1af/tmpxyifc3sj.py", line 8, in <module>
solve()
File "/tmp/tmprnhzr1af/tmpxyifc3sj.py", line 4, in solve
a, b, h = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s577609431 | p03997 | u003501233 | 1561407802 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 59 | a=int(input()
b=int(input()
h=int(input()
print((a+b)*h//2) | File "/tmp/tmpx7p79ldi/tmpmwwjl1pp.py", line 1
a=int(input()
^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s482019110 | p03997 | u003501233 | 1561407511 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 48 | a,b,h=map(int,inpuut().split())
print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmpl8a92rve/tmpptga8iem.py", line 1, in <module>
a,b,h=map(int,inpuut().split())
^^^^^^
NameError: name 'inpuut' is not defined. Did you mean: 'input'?
| |
s828031732 | p03997 | u003501233 | 1561407482 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 48 | a,b,h=map(int,inpuut().split())
print((a+b)*2/2) | Traceback (most recent call last):
File "/tmp/tmp47ar7ckh/tmpvp286kk5.py", line 1, in <module>
a,b,h=map(int,inpuut().split())
^^^^^^
NameError: name 'inpuut' is not defined. Did you mean: 'input'?
| |
s066536152 | p03997 | u136811344 | 1560532867 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 153 | S = dict()
S['a'] = list(input())[::-1]
S['b'] = list(input())[::-1]
S['c'] = list(input())[::-1]
p = 'a'
while S[p]:
p = S[p].pop()
print(p.upper()) | Traceback (most recent call last):
File "/tmp/tmp4ulxf6cp/tmp2m_99d2r.py", line 2, in <module>
S['a'] = list(input())[::-1]
^^^^^^^
EOFError: EOF when reading a line
| |
s718358618 | p03997 | u637918426 | 1559688685 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 67 | a, b, h = map(int, input().split())
S = (a + b) * h // 2
print(S) | Traceback (most recent call last):
File "/tmp/tmpm20nxs2d/tmp3u7a7p6c.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s229935802 | p03997 | u637918426 | 1559688598 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 65 | a, b, h = map(int, input().split())
S = (a + b) * h /2
print(S) | Traceback (most recent call last):
File "/tmp/tmp4ldc2g6h/tmpg6_eeo22.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s883093805 | p03997 | u637918426 | 1559688542 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 70 | a, b, h = map(int, input().split())
S = (a + b) * h /int(2)
print(S) | Traceback (most recent call last):
File "/tmp/tmplylslxaj/tmppnw4hpuq.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s686219090 | p03997 | u637918426 | 1559688308 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 70 | a, b, h = map(int, input().split())
S = (a + b) * h /int(2)
print(S) | Traceback (most recent call last):
File "/tmp/tmpim6r38py/tmp_01prczu.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s023927064 | p03997 | u637918426 | 1559688236 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 70 | a, b, h = map(int, input().split())
S = int((a + b) * h /2)
print(S) | Traceback (most recent call last):
File "/tmp/tmplpv9jiju/tmpv0so8869.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s962397194 | p03997 | u623687794 | 1559584937 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 67 | a=int(input())
b=int(input())
c=int(input())
print(((a+b)*h)//2)
| Traceback (most recent call last):
File "/tmp/tmpoi3nrz4o/tmpcqy2581k.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s651072089 | p03997 | u816919571 | 1559308764 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 68 | n = [int(inout()) for _ in [0]*3]
print( int(((n[0]+n[1])*n[2])/2) ) | Traceback (most recent call last):
File "/tmp/tmp_4xgpp9f/tmporl41p7t.py", line 1, in <module>
n = [int(inout()) for _ in [0]*3]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmp_4xgpp9f/tmporl41p7t.py", line 1, in <listcomp>
n = [int(inout()) for _ in [0]*3]
^^^^^
NameError: name 'inout' is not defined. Did you mean: 'input'?
| |
s150742582 | p03997 | u016622494 | 1559188907 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 52 | a = input()
b = input()
h = input()
print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmpu5da1uk8/tmpenynm938.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s633114002 | p03997 | u016622494 | 1559188870 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 50 | a = input()
b = input()
h = input
print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmpr_77kup8/tmpeb6iwn1s.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s211052775 | p03997 | u016622494 | 1559188833 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 47 | a=input()
b=input()
h=input()
print((a+b)*h+/2) | File "/tmp/tmpz9z2x371/tmp7mqvrx_7.py", line 4
print((a+b)*h+/2)
^
SyntaxError: invalid syntax
| |
s274595825 | p03997 | u016622494 | 1559188756 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 45 | a=input()
b=input()
h=input
print((a+b)*h+/2) | File "/tmp/tmpltjwhgs6/tmpnpzygguc.py", line 4
print((a+b)*h+/2)
^
SyntaxError: invalid syntax
| |
s434583689 | p03997 | u117579775 | 1559156692 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 78 | a = []
for i in range(3):
a.append(input())
print((a[0] + a[1]) * a[2] / 2) | Traceback (most recent call last):
File "/tmp/tmpqpov2kvp/tmpu1nce66q.py", line 3, in <module>
a.append(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s850647130 | p03997 | u041075929 | 1559083087 | Python | Python (3.4.3) | py | Runtime Error | 20 | 3316 | 189 | import sys, os
f = lambda:list(map(int,input().split()))
if 'local' in os.environ :
sys.stdin = open('./input.txt', 'r')
def solve():
a,b,h = f()
print((a+b)*h//2)
solve()
| Traceback (most recent call last):
File "/tmp/tmpyccvlbhw/tmp6uemr8y1.py", line 13, in <module>
solve()
File "/tmp/tmpyccvlbhw/tmp6uemr8y1.py", line 10, in solve
a,b,h = f()
^^^
File "/tmp/tmpyccvlbhw/tmp6uemr8y1.py", line 3, in <lambda>
f = lambda:list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s793533484 | p03997 | u266874640 | 1558431528 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 80 | a = int(input())
b = int(input())
h = int(input())
print(int(((a + b) * h / 2))
| File "/tmp/tmp0mnpy28g/tmphqdabv8n.py", line 4
print(int(((a + b) * h / 2))
^
SyntaxError: '(' was never closed
| |
s996788661 | p03997 | u266874640 | 1558431327 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 66 | a = int(input())
b = int(input())
h = int(input
print((a + b)/2*h) | File "/tmp/tmp09qmm79h/tmpvoeoqq94.py", line 3
h = int(input
^
SyntaxError: '(' was never closed
| |
s387120370 | p03997 | u363992934 | 1557880401 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 49 | print((int(input())+int(input())*int(input())//2) | File "/tmp/tmpmo8v4wck/tmpu7wqt4t3.py", line 1
print((int(input())+int(input())*int(input())//2)
^
SyntaxError: '(' was never closed
| |
s857230820 | p03997 | u363992934 | 1557880333 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 35 | print((input()+input())*input()//2) | Traceback (most recent call last):
File "/tmp/tmp2w145646/tmpnvvps8uv.py", line 1, in <module>
print((input()+input())*input()//2)
^^^^^^^
EOFError: EOF when reading a line
| |
s239808854 | p03997 | u840810569 | 1557339382 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 54 | a,b,c,d = map(int,input().split())
print(max(a*b,c*d)) | Traceback (most recent call last):
File "/tmp/tmpkw5lqvj6/tmppn2hdv_6.py", line 1, in <module>
a,b,c,d = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s049424340 | p03997 | u532966492 | 1557172359 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 47 | a,b,h=map(int,input().split());print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmpqqhewi3_/tmp3rh6qfcl.py", line 1, in <module>
a,b,h=map(int,input().split());print((a+b)*h/2)
^^^^^^^
EOFError: EOF when reading a line
| |
s394361332 | p03997 | u875347753 | 1557170574 | Python | Python (3.4.3) | py | Runtime Error | 20 | 3060 | 70 | a = int(input())
b = iny(input())
h = int(input())
print((a + b)*h/2) | Traceback (most recent call last):
File "/tmp/tmpnd8grnj9/tmpy5c6wawu.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s767687557 | p03997 | u806855121 | 1557146849 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 53 | a, b, h = map(int, input().split())
print((a+b)*h//2) | Traceback (most recent call last):
File "/tmp/tmpqilzh9me/tmp0zfieak8.py", line 1, in <module>
a, b, h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s645606346 | p03997 | u409064224 | 1556473998 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 68 | a = int(input())
b = int(input())
c = int(input())
print((a+b)*h/2) | Traceback (most recent call last):
File "/tmp/tmpsyyizs8n/tmpiyek3_8x.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s423522702 | p03997 | u609738635 | 1556406093 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 181 | # -*- coding: utf-8 -*-
def solve(a, b, h):
print(int((a+b)*h/2)
if __name__ == '__main__':
a = int(input())
b = int(input())
h = int(input())
solve(a, b, h) | File "/tmp/tmpmmclwumd/tmpmj9ocxgw.py", line 4
print(int((a+b)*h/2)
^
SyntaxError: '(' was never closed
| |
s615879300 | p03997 | u389910364 | 1556069964 | Python | Python (3.4.3) | py | Runtime Error | 23 | 3700 | 909 | import functools
import os
import sys
sys.setrecursionlimit(10000)
INF = float('inf')
def inp():
return int(input())
def inpf():
return float(input())
def inps():
return input()
def inl():
return list(map(int, input().split()))
def inlf():
return list(map(float, input().split()))
def inls():
return input().split()
def inpm(line):
return [inp() for _ in range(line)]
def inpfm(line):
return [inpf() for _ in range(line)]
def inpsm(line):
return [inps() for _ in range(line)]
def inlm(line):
return [inl() for _ in range(line)]
def inlfm(line):
return [inlf() for _ in range(line)]
def inlsm(line):
return [inls() for _ in range(line)]
def Yesif(cond):
print('Yes' if cond else 'No')
def YESIF(cond):
print('YES' if cond else 'NO')
def yesif(cond):
print('yes' if cond else 'no')
a, b, c =inpm()
print((a+b) /2* c) | Traceback (most recent call last):
File "/tmp/tmph90rqdpg/tmp64w5tcak.py", line 69, in <module>
a, b, c =inpm()
^^^^^^
TypeError: inpm() missing 1 required positional argument: 'line'
| |
s435920153 | p03997 | u149752754 | 1555639635 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 53 | a = input()
b = input()
h = input()
print((a+b)*h//2) | Traceback (most recent call last):
File "/tmp/tmpk8_aisab/tmpw8q1fl51.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s477771998 | p03997 | u331464808 | 1555352558 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 74 | a = int(input())
b = int(input())
h = int(input())
s == (a+b)*h/2
print(s) | Traceback (most recent call last):
File "/tmp/tmp7wlacb7n/tmpucbj2oj9.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s501563126 | p03997 | u457960175 | 1555006840 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 57 | a, b, h = map(int(input).sprit())
print((a + b) * h / 2) | Traceback (most recent call last):
File "/tmp/tmpdd4hkafc/tmp5b7k1ys8.py", line 1, in <module>
a, b, h = map(int(input).sprit())
^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'
| |
s608134632 | p03997 | u055941944 | 1554520083 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 176 | # -*- coding utf-8 -*-
n = int(input())
k = int(input())
x = int(input())
y = int(input())
if n <= k :
print(n*x)
elif k < n :
ans = (k*x) + (y*(n-k))
print(ans)
| Traceback (most recent call last):
File "/tmp/tmpe8ncv6ch/tmpah32ewgc.py", line 3, in <module>
n = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s196954995 | p03997 | u279493135 | 1554509560 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3064 | 1570 | import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians
from heapq import heappop, heappush, heapify, heappushpop
from bisect import bisect_left, bisect_right
from itertools import permutations, combinations, product
from operator import itemgetter, mul
from copy import deepcopy
from functools import reduce, partial
from fractions import Fraction
from string import ascii_lowercase, ascii_uppercase, digits
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
MOD = 10 ** 9 + 7
a = INT()
b = INT()
h = INT()
print(int((a+b)*h/2))import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians
from heapq import heappop, heappush, heapify, heappushpop
from bisect import bisect_left, bisect_right
from itertools import permutations, combinations, product
from operator import itemgetter, mul
from copy import deepcopy
from functools import reduce, partial
from fractions import Fraction
from string import ascii_lowercase, ascii_uppercase, digits
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
MOD = 10 ** 9 + 7
a = INT()
b = INT()
h = INT()
print(int((a+b)*h/2)) | File "/tmp/tmpyqz0r4if/tmpz1ic0low.py", line 24
print(int((a+b)*h/2))import sys, re
^^^^^^
SyntaxError: invalid syntax
| |
s398850352 | p03997 | u121732701 | 1554499586 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 74 | a = int(input())
b = int(input())
h = int(input())
print(int((a+b)*h/2) | File "/tmp/tmpjscwtjga/tmp9so0ies8.py", line 5
print(int((a+b)*h/2)
^
SyntaxError: '(' was never closed
| |
s073375800 | p03997 | u405947212 | 1554215119 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 245 | cards = [input() for i in range(3)]
now = 0
index =[0,0,0]
dic={"a":0,"b":1,"c":2}
while True:
if index[now] == len(cards[now]):
break
idx = index[now]
index[now] += 1
now = dic[cards[now][idx]]
print("ABC"[now])
| Traceback (most recent call last):
File "/tmp/tmpeecwou9b/tmp0g9kcj88.py", line 1, in <module>
cards = [input() for i in range(3)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpeecwou9b/tmp0g9kcj88.py", line 1, in <listcomp>
cards = [input() for i in range(3)]
^^^^^^^
EOFError: EOF when reading a line
| |
s188638401 | p03997 | u748311048 | 1554211297 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 48 | a=input();b=input();h=input()
print((a+b)*h//2) | Traceback (most recent call last):
File "/tmp/tmp9uw0c1ml/tmpxm8s3k0y.py", line 1, in <module>
a=input();b=input();h=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s295933440 | p03997 | u748311048 | 1554210869 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 47 | a=input();b=input();h=input()
print((a+b)/2*h) | Traceback (most recent call last):
File "/tmp/tmpe8nsoik9/tmpg2dol_zp.py", line 1, in <module>
a=input();b=input();h=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s937308043 | p03997 | u036363750 | 1554072556 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 170 | #!/usr/bin/env python3
def main():
a = [int(input()) for i in range(3)]
print(int((a[0]+a[1])*a[2]/2))
if __name__=='__main__':main()
~ | File "/tmp/tmpo2pklrg4/tmpjjm8z2e4.py", line 7
~
^
SyntaxError: invalid syntax
| |
s715526260 | p03997 | u280512618 | 1553948909 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 51 | print((int(input())+(int(input()))*int(input())//2) | File "/tmp/tmpp050dt67/tmpg3achavu.py", line 1
print((int(input())+(int(input()))*int(input())//2)
^
SyntaxError: '(' was never closed
| |
s561518021 | p03997 | u268516119 | 1553275389 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 69 | [i for i in [a,b,h]=[int(input()) for i in range(3)]
print((a+b)*h/2) | File "/tmp/tmpsdoqc1dn/tmpdkamidg9.py", line 1
[i for i in [a,b,h]=[int(input()) for i in range(3)]
^
SyntaxError: invalid syntax
| |
s919743273 | p03997 | u844123804 | 1552938861 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 66 | num = [input() for i in range(3)]
print((num[0]+num[1])*num[2]/2) | Traceback (most recent call last):
File "/tmp/tmpwpm9pci3/tmp0gvp87mx.py", line 1, in <module>
num = [input() for i in range(3)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpwpm9pci3/tmp0gvp87mx.py", line 1, in <listcomp>
num = [input() for i in range(3)]
^^^^^^^
EOFError: EOF when reading a line
| |
s616905043 | p03997 | u890950695 | 1552842521 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 212 | # -*- coding: utf-8 -*-
# 整数の入力
a = int(input())
# 整数の入力
b = int(input())
# 整数の入力
h = int(input())
# スペース区切りの整数の入力
# 出力
print("{}".format((a+b)*h/2))) | File "/tmp/tmpstcjmjgb/tmp6owb22uh.py", line 11
print("{}".format((a+b)*h/2)))
^
SyntaxError: unmatched ')'
| |
s475928814 | p03997 | u403984573 | 1551300795 | Python | Python (3.4.3) | py | Runtime Error | 20 | 3060 | 61 | a=int(input())
b=int(input())
h=int(input())
print((A+B)*h/2) | Traceback (most recent call last):
File "/tmp/tmp85bo_hb9/tmpqh_ow0q7.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s745883996 | p03997 | u185464141 | 1551050518 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 62 | a,b,h = map(int, input().split());
print(int((a + b) * h / 2)) | Traceback (most recent call last):
File "/tmp/tmpjellsygq/tmpcxltchal.py", line 1, in <module>
a,b,h = map(int, input().split());
^^^^^^^
EOFError: EOF when reading a line
| |
s771253908 | p03997 | u185464141 | 1551050436 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 56 | a,b,h = map(int, input().split())
print((a + b) * h / 2) | Traceback (most recent call last):
File "/tmp/tmpn0mentt9/tmpe1bg37ng.py", line 1, in <module>
a,b,h = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s501390206 | p03997 | u185464141 | 1551050403 | Python | PyPy3 (2.4.0) | py | Runtime Error | 174 | 38256 | 57 | a,b,h = map(int, input().split()); print((a + b) * h / 2) | Traceback (most recent call last):
File "/tmp/tmp74kkgb2l/tmpntw_sm9z.py", line 1, in <module>
a,b,h = map(int, input().split()); print((a + b) * h / 2)
^^^^^^^
EOFError: EOF when reading a line
| |
s326680102 | p03997 | u449555432 | 1550948123 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 52 | a,b,h=map(int,input().split());print(int((a+b)*h/2)) | Traceback (most recent call last):
File "/tmp/tmpn0xrybvk/tmp0vzwvhly.py", line 1, in <module>
a,b,h=map(int,input().split());print(int((a+b)*h/2))
^^^^^^^
EOFError: EOF when reading a line
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.