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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s828504799 | p00001 | u280308796 | 1454261311 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | array = []
for i in range(10):
line = int(input())
array += [line]
result = array.sort()[::-1]
print(result[0])
print(result[1])
print(result[2]) | Traceback (most recent call last):
File "/tmp/tmp61gvk4tv/tmpqyeo8fy4.py", line 3, in <module>
line = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s745690941 | p00001 | u386731818 | 1454918432 | Python | Python3 | py | Runtime Error | 0 | 0 | 173 | import string
h = input().split()
for i in range(len(h)):
for j in range(len(h)-1):
if h[i] < h[j]:
h[i] = h[j]
print(h[0])
print(h[1])
print(h[2]) | Traceback (most recent call last):
File "/tmp/tmpwl99nvf8/tmpaikhgd92.py", line 3, in <module>
h = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s498430434 | p00001 | u386731818 | 1454919114 | Python | Python3 | py | Runtime Error | 0 | 0 | 229 | import string
h = input().split()
for i in range(len(h)):
for j in range(len(h)-1):
if int(h[i]) > int(h[j]):
tmp = h[i]
h[i] = h[j]
h[j] = tmp
print(h[0])
print(h[1])
print(h[2]) | Traceback (most recent call last):
File "/tmp/tmpvqp6r8fa/tmp36n6tanc.py", line 3, in <module>
h = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s082025767 | p00001 | u386731818 | 1454919881 | Python | Python3 | py | Runtime Error | 0 | 0 | 308 | import string
count = 0
try:
count += 1
h[count] = int(input())
except:
print("??????")
for i in range(len(h)):
for j in range(len(h)-1):
if int(h[i]) > int(h[j]):
tmp = h[i]
h[i] = h[j]
h[j] = tmp
print(h[0])
print(h[1])
print(h[2]) | Traceback (most recent call last):
File "/tmp/tmp34jiruy0/tmpgop8merd.py", line 10, in <module>
for i in range(len(h)):
^
NameError: name 'h' is not defined
| ??????
|
s917544296 | p00001 | u870028426 | 1458552260 | Python | Python | py | Runtime Error | 0 | 0 | 273 | # -*- coding: utf-8 -*-
hills_list = []
while len(hills_list) != 10:
hills = raw_input()
if isinstance(hills, int) and (10000 >= hills) and (hills >= 0):
hills_list.append(hills)
hills_list.sort()
print hills_list[0]
print hills_list[1]
print hills_list[2] | File "/tmp/tmpk815bqi0/tmpa2czbn1d.py", line 9
print hills_list[0]
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s303347129 | p00001 | u994049982 | 1458680224 | Python | Python | py | Runtime Error | 0 | 0 | 68 | [print(I) for I in sorted([int(input()) for i in range(10)])[2::-1]] | Traceback (most recent call last):
File "/tmp/tmpwzwmcnkn/tmpeakdscwa.py", line 1, in <module>
[print(I) for I in sorted([int(input()) for i in range(10)])[2::-1]]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpwzwmcnkn/tmpeakdscwa.py", line 1, in <listcomp>
[print(I) for I in sorted([int(input()) for i in range(10)])[2::-1]]
^^^^^^^
EOFError: EOF when reading a line
| |
s970428821 | p00001 | u994049982 | 1458680369 | Python | Python | py | Runtime Error | 0 | 0 | 70 | a=[print(I) for I in sorted([int(input()) for i in range(10)])[2::-1]] | Traceback (most recent call last):
File "/tmp/tmpj3g4ss8s/tmp2uqa_7vu.py", line 1, in <module>
a=[print(I) for I in sorted([int(input()) for i in range(10)])[2::-1]]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpj3g4ss8s/tmp2uqa_7vu.py", line 1, in <listcomp>
a=[print(I) for I in sorted([int(input()) for i in range(10)])[2::-1]]
^^^^^^^
EOFError: EOF when reading a line
| |
s786350867 | p00001 | u994049982 | 1458680592 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a=[print(I) for I in sorted([int(input()) for i in range(10)])[:-4:-1]] | Traceback (most recent call last):
File "/tmp/tmpajbqb0l5/tmpwa_euuhj.py", line 1, in <module>
a=[print(I) for I in sorted([int(input()) for i in range(10)])[:-4:-1]]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpajbqb0l5/tmpwa_euuhj.py", line 1, in <listcomp>
a=[print(I) for I in sorted([int(input()) for i in range(10)])[:-4:-1]]
^^^^^^^
EOFError: EOF when reading a line
| |
s611891571 | p00001 | u994049982 | 1458681041 | Python | Python | py | Runtime Error | 0 | 0 | 98 | a=[int(input()) for i in range(10)]
a.sort()
a=a[::-1]
a=a[-4]
print(a[0])
print(a[1])
print(a[2]) | Traceback (most recent call last):
File "/tmp/tmpc029lshw/tmpdhf6wcry.py", line 1, in <module>
a=[int(input()) for i in range(10)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpc029lshw/tmpdhf6wcry.py", line 1, in <listcomp>
a=[int(input()) for i in range(10)]
^^^^^^^
EOFError: EOF when reading a line
| |
s110993323 | p00001 | u994049982 | 1458681086 | Python | Python | py | Runtime Error | 0 | 0 | 109 | a=[]
for i in range(10):
a.append(input())
a.sort()
a=a[::-1]
a=a[-4]
print(a[0])
print(a[1])
print(a[2]) | Traceback (most recent call last):
File "/tmp/tmpuc3jvu9c/tmpazkjzrgd.py", line 3, in <module>
a.append(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s619644194 | p00001 | u800201003 | 1459135013 | Python | Python | py | Runtime Error | 0 | 0 | 95 | fake = height of mountain[:]
while len(fake)> 7:
print max(fake)
fake.remove(max(fake)) | File "/tmp/tmpf3rezxd1/tmpabtm_q5h.py", line 1
fake = height of mountain[:]
^^
SyntaxError: invalid syntax
| |
s067294122 | p00001 | u473221511 | 1461621668 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | l = []
for i in range(10):
l.append(int(input()))
l.sort()
for i in range(3):
print(l[-1 * [i]]) | Traceback (most recent call last):
File "/tmp/tmplcgcv9ba/tmpc0nmgks5.py", line 4, in <module>
l.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s544508917 | p00001 | u473221511 | 1461621686 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | l = []
for i in range(10):
l.append(int(input()))
l.sort()
for i in range(3):
print(l[-1 * [i+1]]) | Traceback (most recent call last):
File "/tmp/tmpjogflcpa/tmpfk1t7_yz.py", line 4, in <module>
l.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s010953137 | p00001 | u412890344 | 1462758797 | Python | Python3 | py | Runtime Error | 0 | 0 | 373 | # -*- coding:utf-8 -*-
import sys
first = 0
second = 0
third = 0
for line in open(sys.argv[1],"r"):
if first < int(line):
third = second
second = first
first = int(line)
elif second < int(line):
third = second
second = int(line)
elif third < int(line):
third = int(line)
print(first)
print(second)
print(third) | Traceback (most recent call last):
File "/tmp/tmp93q2q0c1/tmpataus8hz.py", line 8, in <module>
for line in open(sys.argv[1],"r"):
~~~~~~~~^^^
IndexError: list index out of range
| |
s581961172 | p00001 | u412890344 | 1462758858 | Python | Python3 | py | Runtime Error | 0 | 0 | 350 | import sys
first = 0
second = 0
third = 0
for line in open(sys.argv[1],"r"):
if first < int(line):
third = second
second = first
first = int(line)
elif second < int(line):
third = second
second = int(line)
elif third < int(line):
third = int(line)
print(first)
print(second)
print(third) | Traceback (most recent call last):
File "/tmp/tmpswvuu27e/tmplvqg1we_.py", line 7, in <module>
for line in open(sys.argv[1],"r"):
~~~~~~~~^^^
IndexError: list index out of range
| |
s024196938 | p00001 | u412890344 | 1462759602 | Python | Python3 | py | Runtime Error | 0 | 0 | 389 | # -*- coding:utf-8 -*-
import sys
first = 0
second = 0
third = 0
i = 0
for i in range(1,10):
line = sys.argv[i]
if first < int(line):
third = second
second = first
first = int(line)
elif second < int(line):
third = second
second = int(line)
elif third < int(line):
third = int(line)
print(first)
print(second)
print(third) | Traceback (most recent call last):
File "/tmp/tmpow41_y_v/tmptuosd1mu.py", line 10, in <module>
line = sys.argv[i]
~~~~~~~~^^^
IndexError: list index out of range
| |
s189282351 | p00001 | u412890344 | 1462759672 | Python | Python3 | py | Runtime Error | 0 | 0 | 366 | import sys
first = 0
second = 0
third = 0
i = 0
for i in range(1,10):
line = sys.argv[i]
if first < int(line):
third = second
second = first
first = int(line)
elif second < int(line):
third = second
second = int(line)
elif third < int(line):
third = int(line)
print(first)
print(second)
print(third) | Traceback (most recent call last):
File "/tmp/tmpoztzanwn/tmp1nh97e5w.py", line 9, in <module>
line = sys.argv[i]
~~~~~~~~^^^
IndexError: list index out of range
| |
s944849778 | p00001 | u412890344 | 1462841514 | Python | Python3 | py | Runtime Error | 0 | 0 | 389 | # -*- coding:utf-8 -*-
import sys
first = 0
second = 0
third = 0
i = 0
for i in range(1,10):
line = sys.argv[i]
if first < int(line):
third = second
second = first
first = int(line)
elif second < int(line):
third = second
second = int(line)
elif third < int(line):
third = int(line)
print(first)
print(second)
print(third) | Traceback (most recent call last):
File "/tmp/tmpjsxlo511/tmp_w5r1k9b.py", line 10, in <module>
line = sys.argv[i]
~~~~~~~~^^^
IndexError: list index out of range
| |
s317578996 | p00001 | u930806831 | 1463240646 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | n = 0
list = []
while n < 10:
x = input()
list.append(x)
n += 1
sort.list()
print(list[7])
print(list[8])
print(list[9]) | Traceback (most recent call last):
File "/tmp/tmpvps_sg0b/tmpj9jjsats.py", line 4, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s938566384 | p00001 | u532629953 | 1465138189 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | l = [input()]*10
for i in l.sort(reverse=True)[:3]:
print(i) | Traceback (most recent call last):
File "/tmp/tmp1lzro3pf/tmpy4oj6lyq.py", line 1, in <module>
l = [input()]*10
^^^^^^^
EOFError: EOF when reading a line
| |
s994778738 | p00001 | u187982575 | 1467616098 | Python | Python3 | py | Runtime Error | 0 | 0 | 212 | #coding: utf8
f = open("sample.txt")
a=[]
a = f.read().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
print a
for num in a[0:3]:
print num
f.close() | File "/tmp/tmp8oqe6o92/tmp21v2gtfw.py", line 9
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s472930704 | p00001 | u187982575 | 1467616434 | Python | Python3 | py | Runtime Error | 0 | 0 | 228 | #coding: utf8
from sys import argv
script, f = argv
a=[]
a = open(f)
a = a.read().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
print a
for num in a[0:3]:
print num | File "/tmp/tmpvbl6aith/tmp867agl5f.py", line 11
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s847430952 | p00001 | u187982575 | 1467616566 | Python | Python | py | Runtime Error | 0 | 0 | 228 | #coding: utf8
from sys import argv
script, f = argv
a=[]
a = open(f)
a = a.read().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
print a
for num in a[0:3]:
print num | File "/tmp/tmp9gzq3eu_/tmpn5d2052y.py", line 11
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s102445876 | p00001 | u187982575 | 1467616581 | Python | Python | py | Runtime Error | 0 | 0 | 213 | from sys import argv
script, f = argv
a=[]
a = open(f)
a = a.read().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
print a
for num in a[0:3]:
print num | File "/tmp/tmp2_cs7eua/tmp9js1kfsh.py", line 9
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s021411693 | p00001 | u187982575 | 1467616589 | Python | Python | py | Runtime Error | 0 | 0 | 205 | from sys import argv
f = argv
a=[]
a = open(f)
a = a.read().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
print a
for num in a[0:3]:
print num | File "/tmp/tmpwplrd9qa/tmpq_v9yok_.py", line 9
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s411113664 | p00001 | u187982575 | 1467616628 | Python | Python | py | Runtime Error | 0 | 0 | 197 | from sys import argv
f = argv
a=[]
a = open(f)
a = a.read().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
for num in a[0:3]:
print num | File "/tmp/tmpolj8khnq/tmpd7wtsw_x.py", line 10
print num
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s408919076 | p00001 | u187982575 | 1467616665 | Python | Python3 | py | Runtime Error | 0 | 0 | 197 | from sys import argv
f = argv
a=[]
a = open(f)
a = a.read().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
for num in a[0:3]:
print num | File "/tmp/tmpt0ecxnyi/tmp6_z6o4y0.py", line 10
print num
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s734469706 | p00001 | u187982575 | 1467616744 | Python | Python3 | py | Runtime Error | 0 | 0 | 221 | #coding: utf8
from sys import argv
script, f = argv
a=[]
a = open(f)
a = a.read().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
for num in a[0:3]:
print num | File "/tmp/tmpun_tg_xn/tmpmqqparu4.py", line 11
print num
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s719100090 | p00001 | u187982575 | 1467616981 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print input() | File "/tmp/tmpwtv5o66u/tmp9dzqepa7.py", line 1
print input()
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s576013412 | p00001 | u187982575 | 1467617002 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print input() | File "/tmp/tmpqx562bbb/tmpu0s_b5ci.py", line 1
print input()
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s786006071 | p00001 | u187982575 | 1467617470 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | #coding: utf8
a=[]
a = input().splitlines()
for idx, num in enumerate(a):
a[idx] = int(a[idx])
a = sorted(a, key=int, reverse=True)
for num in a[0:3]:
print num | File "/tmp/tmpj6ttee2j/tmpza_6z611.py", line 9
print num
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s489511907 | p00001 | u834819056 | 1467658004 | Python | Python | py | Runtime Error | 0 | 0 | 73 | N = input()
a = [input() for i in range(N)]
a.sort()
print a[0],a[1],a[3] | File "/tmp/tmplwrb_7n0/tmpl1fg_5uk.py", line 4
print a[0],a[1],a[3]
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s965623523 | p00001 | u146816547 | 1468842890 | Python | Python | py | Runtime Error | 0 | 0 | 93 | height = map(int, raw_input().split())
height.sort()
for i in range(3):
print height[9-i] | File "/tmp/tmpddlj51su/tmpxe04vwyc.py", line 6
print height[9-i]
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s476057029 | p00001 | u159356473 | 1476320464 | Python | Python3 | py | Runtime Error | 0 | 0 | 456 | #coding:UTF-8
def LoT(List):
T1=T2=T3=List[0]
B=0
for i in range(1,len(List)):
if List[i]>T1:
T2=T1
T1=List[i]
if List[i]<T1 and List[i]>T2:
T3=T2
T2=List[i]
if List[i]<T2 and List[i]>T3:
T3=List[i]
print(str(T1)+"\n"+str(T2)+"\n"+str(T3))
if __name__=="__main__":
List=[]
for i in range(10):
List.append(int(input()))
LoT(List | File "/tmp/tmp4f3r1vi0/tmpk5ascwyi.py", line 20
LoT(List
^
SyntaxError: '(' was never closed
| |
s407379894 | p00001 | u155232084 | 1476433177 | Python | Python3 | py | Runtime Error | 0 | 0 | 217 | import sys
in_=sys.argv[1]
with open(in_,"r") as f:
lis=[]
for line in f:
line=line.strip()
lis.append(line)
for i in sorted(lis,reverse=True):
print(i)
if i==2:
break | Traceback (most recent call last):
File "/tmp/tmpetpaefl1/tmpryso20zc.py", line 3, in <module>
in_=sys.argv[1]
~~~~~~~~^^^
IndexError: list index out of range
| |
s176406591 | p00001 | u149199817 | 1477914032 | Python | Python3 | py | Runtime Error | 0 | 0 | 316 | # -*- coding: utf-8 -*-
import sys
import six
def top_k_sort(data, k=3, reverse=True):
data.sort(reverse=True)
return data[:k]
def main():
data = map(int, raw_input().split())
data = [int(v) for v in argv[1:]]
for h in top_k_sort(data):
print(h)
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmp31sw8lb9/tmpcinjetvi.py", line 18, in <module>
main()
File "/tmp/tmp31sw8lb9/tmpcinjetvi.py", line 11, in main
data = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s233313413 | p00001 | u149199817 | 1477914109 | Python | Python3 | py | Runtime Error | 0 | 0 | 305 | # -*- coding: utf-8 -*-
import sys
def top_k_sort(data, k=3, reverse=True):
data.sort(reverse=True)
return data[:k]
def main():
data = map(int, raw_input().split())
data = [int(v) for v in argv[1:]]
for h in top_k_sort(data):
print(h)
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmpkpuvavc9/tmpi6acziyq.py", line 17, in <module>
main()
File "/tmp/tmpkpuvavc9/tmpi6acziyq.py", line 10, in main
data = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s918880947 | p00001 | u149199817 | 1477914165 | Python | Python3 | py | Runtime Error | 0 | 0 | 336 | # -*- coding: utf-8 -*-
import sys
def top_k_sort(data, k=3, reverse=True):
data.sort(reverse=True)
return data[:k]
def main():
data = []
for line in sys.stdin:
data.append(int(line))
data = [int(v) for v in argv[1:]]
for h in top_k_sort(data):
print(h)
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmph398tpb6/tmp5eicpcer.py", line 19, in <module>
main()
File "/tmp/tmph398tpb6/tmp5eicpcer.py", line 14, in main
data = [int(v) for v in argv[1:]]
^^^^
NameError: name 'argv' is not defined
| |
s803831828 | p00001 | u149199817 | 1477914259 | Python | Python3 | py | Runtime Error | 0 | 0 | 336 | # -*- coding: utf-8 -*-
import sys
def top_k_sort(data, k=3, reverse=True):
data.sort(reverse=True)
return data[:k]
def main():
data = []
for line in sys.stdin:
data.append(int(line))
data = [int(v) for v in argv[1:]]
for h in top_k_sort(data):
print(h)
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmp2i4ufkf6/tmp_5634wuj.py", line 19, in <module>
main()
File "/tmp/tmp2i4ufkf6/tmp_5634wuj.py", line 14, in main
data = [int(v) for v in argv[1:]]
^^^^
NameError: name 'argv' is not defined
| |
s747016313 | p00001 | u660912567 | 1478456111 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | height_list = [int(input()) for i in range(10)]
for i in range(1,4): print sorted(height_list)[-i] | File "/tmp/tmpnzqc00mx/tmps0argi75.py", line 2
for i in range(1,4): print sorted(height_list)[-i]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s514010004 | p00001 | u252368621 | 1478504003 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | mountain=[]
for i in range(10):
mountain[i]=int(input())
mountain.sort()
fori in range(3):
print(mountain[i]) | File "/tmp/tmpox4cuteq/tmpfp6x49hw.py", line 5
fori in range(3):
^
SyntaxError: invalid syntax
| |
s006707679 | p00001 | u252368621 | 1478504062 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | mountain=[]
for i in range(10):
mountain[i]=int(input())
mountain.sort()
for i in range(3):
print(mountain[i])
| Traceback (most recent call last):
File "/tmp/tmpmqlsk4hp/tmpfag9_k15.py", line 3, in <module>
mountain[i]=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s424824405 | p00001 | u252368621 | 1478504108 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | mountain=[]
for i in range(10):
mountain[i]=int(input())
mountain.sort(::-1)
for i in range(3):
print(mountain[i])
| File "/tmp/tmp99ujpxqk/tmptekqqqq0.py", line 4
mountain.sort(::-1)
^
SyntaxError: invalid syntax
| |
s797917815 | p00001 | u252368621 | 1478504191 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | mountain=[]
for i in range(10):
mountain[i]=int(input())
mountain.sort()
mountain.reverse()
for i in range(3):
print(mountain[i])
| Traceback (most recent call last):
File "/tmp/tmp4z6ch89_/tmp6ul968zp.py", line 3, in <module>
mountain[i]=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s304500116 | p00001 | u922871577 | 1479277577 | Python | Python | py | Runtime Error | 0 | 0 | 83 | A = sorted([int(raw_input()) for _ in xrange(10)])
print A[9]
print A[8]
PRINT a[7] | File "/tmp/tmp2_hkcky8/tmpojy6c_5k.py", line 2
print A[9]
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s688542347 | p00001 | u922871577 | 1479277622 | Python | Python | py | Runtime Error | 0 | 0 | 83 | A = sorted([int(raw_input()) for _ in xrange(10)])
print A[9]
print A[8]
Print a[7] | File "/tmp/tmpf_gzqp0c/tmpq3mriojw.py", line 2
print A[9]
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s088528800 | p00001 | u328069918 | 1479469498 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | import sys
[print(len(str(y[0] + y[1]))) for y in [[int(z) for z in x.split()] for x in sys.stdin]] | ||
s576788366 | p00001 | u328069918 | 1479469512 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | import sys
[print(len(str(y[0] + y[1]))) for y in [[int(z) for z in x.split()] for x in sys.stdin]] | ||
s061128998 | p00001 | u542645301 | 1479470446 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import sys
[print(d) for i, d in enumerate([i for i in sys.stdin].reverse()) if i < 3] | Traceback (most recent call last):
File "/tmp/tmpqesf3bjn/tmpzdchuvb3.py", line 2, in <module>
[print(d) for i, d in enumerate([i for i in sys.stdin].reverse()) if i < 3]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: 'NoneType' object is not iterable
| |
s453119621 | p00001 | u116501200 | 1480143791 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | [print(e)for e in sorted([int(input())for _ in range(10)],reverse=True)[0:3]] | File "/tmp/tmp5w5ut2ie/tmpse3s7ley.py", line 1
[print(e)for e in sorted([int(input())for _ in range(10)],reverse=True)[0:3]]
IndentationError: unexpected indent
| |
s781323193 | p00001 | u116501200 | 1480143809 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | [print(e)for e in sorted([int(input())for _ in range(10)],reverse=True)[0:3]] | File "/tmp/tmp6qyvzs8o/tmpigpv5b7h.py", line 1
[print(e)for e in sorted([int(input())for _ in range(10)],reverse=True)[0:3]]
IndentationError: unexpected indent
| |
s938044597 | p00001 | u796112608 | 1481116462 | Python | Python | py | Runtime Error | 0 | 0 | 120 | height = []
for i in range(10)
height.append(int(input()))
height.sort()
for i in range(9,6,-1)
print(height[i]) | File "/tmp/tmp92rmnk0y/tmp3fk1vt28.py", line 2
for i in range(10)
^
SyntaxError: expected ':'
| |
s567895026 | p00001 | u796112608 | 1481123793 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | height = []
for i in range(10):
height.append(int(input()))
for i in range(3):
most = max(height)
print(most)
height[index(most)] = 0 | Traceback (most recent call last):
File "/tmp/tmphnrxdcra/tmpo5qohmxr.py", line 3, in <module>
height.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s873950619 | p00001 | u494314211 | 1481458124 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | l=[]
for i in range(10):
l.append(int(input()))
l.sort().reverse()
print(l[0])
print(l[1])
print(l[2]) | Traceback (most recent call last):
File "/tmp/tmp1x98ghz5/tmpge32_7ze.py", line 3, in <module>
l.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s706236682 | p00001 | u494314211 | 1481458142 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | l=[]
for i in range(10):
l.append(int(input()))
l.sort().reversed()
print(l[0])
print(l[1])
print(l[2]) | Traceback (most recent call last):
File "/tmp/tmp_rljcael/tmpzw4d72t4.py", line 3, in <module>
l.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s219054874 | p00001 | u811841526 | 1485605052 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | heights = list()
for i in range(10):
heights.append(int(input()))
for height in reversed(sorted(heights))[:3]:
print(height) | Traceback (most recent call last):
File "/tmp/tmpkms6xsrh/tmpj_xeqvq7.py", line 3, in <module>
heights.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s092430598 | p00001 | u519227872 | 1486400580 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | m = [int(l) for l in input()]
m.sort()
print(sort[-1])
print(sort[-2])
print(sort[-3]) | Traceback (most recent call last):
File "/tmp/tmpfgmha5vg/tmp8jwlqyqi.py", line 1, in <module>
m = [int(l) for l in input()]
^^^^^^^
EOFError: EOF when reading a line
| |
s147103555 | p00001 | u731896389 | 1488385199 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a = list(map(int,input().split()))
a.sort()
for i in range(1,4):
print(a[-i]) | Traceback (most recent call last):
File "/tmp/tmp5sdaegeg/tmp0p0g4mxa.py", line 1, in <module>
a = list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s576567468 | p00001 | u731896389 | 1488385335 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a = list(map(int,input().split()))
a.sort()
print(a[-1])
print(a[-2])
print(a[-3]) | Traceback (most recent call last):
File "/tmp/tmpx1b274zp/tmpu8vfhng_.py", line 1, in <module>
a = list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s028348494 | p00001 | u897625141 | 1489211912 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | import sys
array=[]
for i in sys.stdin.readlines():
array.append(int(input()))
array.sort()
num = len(array)
for i in range(num-1,num-4,-1):
print(array[i]) | Traceback (most recent call last):
File "/tmp/tmp0ppb_bf_/tmp_09z3pib.py", line 9, in <module>
print(array[i])
~~~~~^^^
IndexError: list index out of range
| |
s501010136 | p00001 | u623894175 | 1489327804 | Python | Python3 | py | Runtime Error | 0 | 0 | 586 | import numpy as np
from numpy.random import *
def quicksort(array):
if len(array) < 2:
return array # ?????¬??±??????
else:
pivot = array[0] # ?????°??±??????
# ???????????????????°???????????????????????????¨?????????
less = [i for i in array[1:] if i <= pivot]
# ????????????????????§??????????????????????????¨?????????
greater = [i for i in array[1:] if i > pivot]
return quicksort(less) + [pivot] + quicksort(greater)
array = randint(0, 1000, 10)
sorted_array = quicksort(array)
print(sorted_array[0:3]) | [16, 18, 132]
| |
s588889473 | p00001 | u623894175 | 1489327885 | Python | Python3 | py | Runtime Error | 0 | 0 | 630 | import numpy as np
from numpy.random import *
def quicksort(array):
if len(array) < 2:
return array # ?????¬??±??????
else:
pivot = array[0] # ?????°??±??????
# ???????????????????°???????????????????????????¨?????????
less = [i for i in array[1:] if i <= pivot]
# ????????????????????§??????????????????????????¨?????????
greater = [i for i in array[1:] if i > pivot]
return quicksort(less) + [pivot] + quicksort(greater)
array = randint(0, 1000, 10)
sorted_array = quicksort(array)
print(sorted_array[0])
print(sorted_array[1])
print(sorted_array[2]) | 46
133
163
| |
s083104432 | p00001 | u623894175 | 1489327914 | Python | Python3 | py | Runtime Error | 0 | 0 | 630 | import numpy as np
from numpy.random import *
def quicksort(array):
if len(array) < 2:
return array # ?????¬??±??????
else:
pivot = array[0] # ?????°??±??????
# ???????????????????°???????????????????????????¨?????????
less = [i for i in array[1:] if i <= pivot]
# ????????????????????§??????????????????????????¨?????????
greater = [i for i in array[1:] if i > pivot]
return quicksort(less) + [pivot] + quicksort(greater)
array = randint(0, 1000, 10)
sorted_array = quicksort(array)
print(sorted_array[2])
print(sorted_array[1])
print(sorted_array[0]) | 318
134
129
| |
s895876415 | p00001 | u623894175 | 1489328052 | Python | Python3 | py | Runtime Error | 0 | 0 | 630 | import numpy as np
from numpy.random import *
def quicksort(array):
if len(array) < 2:
return array # ?????¬??±??????
else:
pivot = array[0] # ?????°??±??????
# ???????????????????°???????????????????????????¨?????????
less = [i for i in array[1:] if i <= pivot]
# ????????????????????§??????????????????????????¨?????????
greater = [i for i in array[1:] if i > pivot]
return quicksort(less) + [pivot] + quicksort(greater)
array = randint(1, 1000, 10)
sorted_array = quicksort(array)
print(sorted_array[2])
print(sorted_array[1])
print(sorted_array[0]) | 290
283
136
| |
s183390636 | p00001 | u623894175 | 1489328087 | Python | Python3 | py | Runtime Error | 0 | 0 | 450 | import numpy as np
from numpy.random import *
def quicksort(array):
if len(array) < 2:
return array
else:
pivot = array[0]
less = [i for i in array[1:] if i <= pivot]
greater = [i for i in array[1:] if i > pivot]
return quicksort(less) + [pivot] + quicksort(greater)
array = randint(1, 1000, 10)
sorted_array = quicksort(array)
print(sorted_array[2])
print(sorted_array[1])
print(sorted_array[0]) | 156
64
60
| |
s550184625 | p00001 | u631113523 | 1491588410 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | list = [int(x) for x in input().split()]
list.sort(reverse=True)
for i in range(3):
print(list[i]) | Traceback (most recent call last):
File "/tmp/tmp1e4ep7zl/tmpsik8les5.py", line 1, in <module>
list = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s697039457 | p00001 | u631113523 | 1491588641 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | list = [int(x) for x in input().split()]
list.sort()
for i in range(3):
print(list[i]) | Traceback (most recent call last):
File "/tmp/tmp3yjfezic/tmpvb88wth2.py", line 1, in <module>
list = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s269232706 | p00001 | u631113523 | 1491588689 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | hoge = [int(x) for x in input().split()]
hoge.sort(reverse=True)
for i in range(3):
print(hoge[i]) | Traceback (most recent call last):
File "/tmp/tmpva_nhih2/tmp0_4r396c.py", line 1, in <module>
hoge = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s832101225 | p00001 | u631113523 | 1491588908 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import sys
hoge = [int(x) for x in input().split()]
hoge.sort(reverse=True)
for i in range(3):
print(hoge[i]) | Traceback (most recent call last):
File "/tmp/tmp_ggwjakd/tmpqeke73uu.py", line 3, in <module>
hoge = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s940694804 | p00001 | u631113523 | 1491589090 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | import string
list = [int(x) for x in input().split()]
list.sort(reverse=True)
for i in range(3):
print(list[i]) | Traceback (most recent call last):
File "/tmp/tmppvv2g27r/tmputp096c_.py", line 3, in <module>
list = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s555666008 | p00001 | u631113523 | 1491589299 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | list = list(map(int, input().split()))
list.sort(reverse=True)
for i in range(3):
print(list[i]) | Traceback (most recent call last):
File "/tmp/tmpt3diifq7/tmpbxeyyi96.py", line 1, in <module>
list = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s512590716 | p00001 | u307520683 | 1491889057 | Python | Python | py | Runtime Error | 0 | 0 | 138 | while True:
try:
a,b = map(int,raw_input().split())
c=str(a+b)
print len(c)
except EOFError:
break | File "/tmp/tmpvto4e24k/tmp0wpwxmkd.py", line 5
print len(c)
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s808138871 | p00001 | u723913470 | 1493367837 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a=list(map(int,input().split()))
b=sorted(a)
print(b[9])
print(b[8])
print(b[7]) | Traceback (most recent call last):
File "/tmp/tmpdhr9f3pk/tmphbnu_s9d.py", line 1, in <module>
a=list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s709504159 | p00001 | u723913470 | 1493368285 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a=list(map(int,input().split()))
b=sorted(a, reverse=True)
print(b[0])
print(b[1])
print(b[2]) | Traceback (most recent call last):
File "/tmp/tmprqfp00rv/tmp2d3ohm1d.py", line 1, in <module>
a=list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s505921630 | p00001 | u723913470 | 1493369927 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a=list(map(int,input().split()))
b=sorted(a, reverse=True)
print(b[0])
print(b[1])
print(b[2]) | Traceback (most recent call last):
File "/tmp/tmpotmipcq_/tmpext2qh1p.py", line 1, in <module>
a=list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s460589951 | p00001 | u905313459 | 1495951488 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | V = int(input())
a = [input() for i in range(V)].sort(reverse=True)
for i in a[0:2]:
print(i) | Traceback (most recent call last):
File "/tmp/tmpfpk9bmvr/tmptpb3y_nd.py", line 1, in <module>
V = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s209735121 | p00001 | u905313459 | 1496054454 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | a = []
for i in range(10):
a.append(input())
a = a.sort(reverse=True)
for i in a[0:2]:
print(i) | Traceback (most recent call last):
File "/tmp/tmp0zxt8eat/tmpzaijyg9b.py", line 3, in <module>
a.append(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s012126734 | p00001 | u928051788 | 1497722897 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a=[]
for i in range(10):
a.append(int(intpt())
a.sort()
print(a[0],a[1],a[2]) | File "/tmp/tmpqm6_aw_1/tmpimgqx4ez.py", line 3
a.append(int(intpt())
^
SyntaxError: '(' was never closed
| |
s393051088 | p00001 | u928051788 | 1497723045 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | for i in range(10):
s.append(int(input()))
s.sort()
for i in range(3):
print(s[i]) | Traceback (most recent call last):
File "/tmp/tmp27ajgl8l/tmpo3i8jfiq.py", line 2, in <module>
s.append(int(input()))
^
NameError: name 's' is not defined
| |
s909750061 | p00001 | u503263570 | 1499047671 | Python | Python3 | py | Runtime Error | 0 | 0 | 173 | try:
a=[]
while True:
a.append(int(input())
except EOFError:
pass
a.sort(reverse=True)
for i,iv in enumerate(a):
print(iv)
if i>=2:
break | File "/tmp/tmpp3_jfeus/tmp3k7h6k3s.py", line 4
a.append(int(input())
^
SyntaxError: '(' was never closed
| |
s846343539 | p00001 | u503263570 | 1499047698 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | try:
a=[]
while True:
a.append(int(input())
except EOFError: | File "/tmp/tmpcj6cg3zf/tmpj52j36gb.py", line 4
a.append(int(input())
^
SyntaxError: '(' was never closed
| |
s761743786 | p00001 | u503263570 | 1499047723 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | try:
while True:
except EOFError: | File "/tmp/tmpjmdb0ke2/tmpffz0su8h.py", line 3
except EOFError:
IndentationError: expected an indented block after 'while' statement on line 2
| |
s925232874 | p00001 | u340500592 | 1499402492 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | heightOfMountains = []
for i in range(1, 11):
heightOfMountains.append(int(input()))
sort.heightOfMountains
for j in range(1, 4):
print(heightOfMountains[-j]) | Traceback (most recent call last):
File "/tmp/tmp_xrafim7/tmpifofly5v.py", line 3, in <module>
heightOfMountains.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s252953239 | p00001 | u340500592 | 1499402539 | Python | Python3 | py | Runtime Error | 0 | 0 | 160 | heightOfMountains = []
for i in range(1, 11):
heightOfMountains.append(int(input()))
sort.heightOfMountains
for i in range(1, 4):
print(heightOfMountains[-j]) | Traceback (most recent call last):
File "/tmp/tmpwm6ask01/tmpru4bygzn.py", line 3, in <module>
heightOfMountains.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s271364438 | p00001 | u340500592 | 1499402917 | Python | Python3 | py | Runtime Error | 0 | 0 | 159 | heightOfMountains = []
for i in range(10):
heightOfMountains.append(int(input()))
heightOfMountains.sort()
for i in range(1, 4):
print(heightOfMountains[-j]) | Traceback (most recent call last):
File "/tmp/tmperb1cqnl/tmpc3a13qjv.py", line 3, in <module>
heightOfMountains.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s533380619 | p00001 | u340500592 | 1499402950 | Python | Python3 | py | Runtime Error | 0 | 0 | 162 | heightOfMountains = []
for i in range(1, 11):
heightOfMountains.append(int(input()))
heightOfMountains.sort()
for i in range(1, 4):
print(heightOfMountains[-j]) | Traceback (most recent call last):
File "/tmp/tmp8m9kqw0k/tmpglx51e5w.py", line 3, in <module>
heightOfMountains.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s705843941 | p00001 | u501510481 | 1500020144 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | mtlist=[]
while True:
mtlist.append(input())
mt
print(list.sort()) | Traceback (most recent call last):
File "/tmp/tmpp64cv3h8/tmpu6nk6gtx.py", line 4, in <module>
mtlist.append(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s193717935 | p00001 | u501510481 | 1500020180 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | mtlist=[]
while True:
mtlist.append(input())
print(list.sort()) | Traceback (most recent call last):
File "/tmp/tmp592bv9s6/tmpxzuzzdkz.py", line 4, in <module>
mtlist.append(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s456978357 | p00001 | u501510481 | 1500020831 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import sys
heights = sort([ int(h) for h in sys.stdin],reverce)
for h in heights:
print(h) | Traceback (most recent call last):
File "/tmp/tmpyb9web64/tmpu1uuyw9f.py", line 2, in <module>
heights = sort([ int(h) for h in sys.stdin],reverce)
^^^^
NameError: name 'sort' is not defined. Did you mean: 'sorted'?
| |
s837654512 | p00001 | u501510481 | 1500021078 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | import sys
heights = sorted([ int(h) for h in sys.stdin],reverce)
for h in heights:
print(h) | Traceback (most recent call last):
File "/tmp/tmp4cb_amjc/tmpk0ih4dwp.py", line 2, in <module>
heights = sorted([ int(h) for h in sys.stdin],reverce)
^^^^^^^
NameError: name 'reverce' is not defined. Did you mean: 'reversed'?
| |
s903694659 | p00001 | u501510481 | 1500021125 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | import sys
heights = sorted([ int(h) for h in sys.stdin],reverce)
for h in heights:
print(h) | Traceback (most recent call last):
File "/tmp/tmph2rlpw9o/tmp8l_5mo9z.py", line 2, in <module>
heights = sorted([ int(h) for h in sys.stdin],reverce)
^^^^^^^
NameError: name 'reverce' is not defined. Did you mean: 'reversed'?
| |
s009929810 | p00001 | u501510481 | 1500021213 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | import sys
heights = sort([ int(h) for h in sys.stdin],reverce)
heights[0]
heights[1]
heights[2] | Traceback (most recent call last):
File "/tmp/tmp9cgxex0t/tmpgx7rpfjt.py", line 2, in <module>
heights = sort([ int(h) for h in sys.stdin],reverce)
^^^^
NameError: name 'sort' is not defined. Did you mean: 'sorted'?
| |
s286499566 | p00001 | u501510481 | 1500021230 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import sys
heights = sorted([ int(h) for h in sys.stdin],reverce)
heights[0]
heights[1]
heights[2] | Traceback (most recent call last):
File "/tmp/tmpd_1wqhxu/tmpb1zwf_ox.py", line 2, in <module>
heights = sorted([ int(h) for h in sys.stdin],reverce)
^^^^^^^
NameError: name 'reverce' is not defined. Did you mean: 'reversed'?
| |
s311178417 | p00001 | u498511622 | 1500080068 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | mountain=[]
for s in range(0,10):
mountain.append(int(input()))
mountain.sort(reverse=true)
for s in range(0,3):
print(mountain[s]) | Traceback (most recent call last):
File "/tmp/tmp55s4tj8u/tmpj0z2mgkf.py", line 3, in <module>
mountain.append(int(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s679573867 | p00001 | u914146430 | 1500342707 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | m_h=[int(input(I) for i in range(10)
m_h.sort(reverse=True)
print(m_h[0])
print(m_h[1])
print(m_h[2]) | File "/tmp/tmpj2hpo7pd/tmp6_qw36os.py", line 1
m_h=[int(input(I) for i in range(10)
^
SyntaxError: '(' was never closed
| |
s436801025 | p00001 | u914146430 | 1500342721 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | m_h=[int(input(I) for i in range(10)]
m_h.sort(reverse=True)
print(m_h[0])
print(m_h[1])
print(m_h[2]) | File "/tmp/tmpu15k9ne5/tmpzq2yrsex.py", line 1
m_h=[int(input(I) for i in range(10)]
^
SyntaxError: closing parenthesis ']' does not match opening parenthesis '('
| |
s996549687 | p00001 | u869667855 | 1500388232 | Python | Python3 | py | Runtime Error | 0 | 0 | 266 | mmax1 = 0
middle = 0
small = 0
x = 0
for i in range(10):
x = int(input())
if max1 < x :
middle = max1
max1 = x
x = 0
elif middle < x :
small = middle
middle = x
x = 0
elif small <= x :
small = x
x = 0
x = 0
print(max1)
print(middle)
print(small) | Traceback (most recent call last):
File "/tmp/tmpuk3s1dww/tmpxw287j_7.py", line 6, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s284985038 | p00001 | u869667855 | 1500388236 | Python | Python3 | py | Runtime Error | 0 | 0 | 266 | mmax1 = 0
middle = 0
small = 0
x = 0
for i in range(10):
x = int(input())
if max1 < x :
middle = max1
max1 = x
x = 0
elif middle < x :
small = middle
middle = x
x = 0
elif small <= x :
small = x
x = 0
x = 0
print(max1)
print(middle)
print(small) | Traceback (most recent call last):
File "/tmp/tmpphutrdhs/tmphyv1rhg9.py", line 6, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s140704890 | p00001 | u531592024 | 1500454009 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | inp = input()
a = [input() for i in range(inp)]
a.sort()
a.reverse()
print(a[0])
print(a[1])
print(a[2]) | Traceback (most recent call last):
File "/tmp/tmpysoksot4/tmpigztbfd1.py", line 1, in <module>
inp = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s566464074 | p00001 | u531592024 | 1500454162 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | inp = input()
a = [input() for i in range(int(inp))]
a.sort()
a.reverse()
print(a[0])
print(a[1])
print(a[2]) | Traceback (most recent call last):
File "/tmp/tmpy7tbxrbc/tmpmtbkv2y9.py", line 1, in <module>
inp = input()
^^^^^^^
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.