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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s075411764 | p00000 | u619547950 | 1509369088 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | object Main {
def main(args: Array[String]): Unit = {
for (i <- 1 to 9; j <- 1 to 9)
println(i + "x" + j + "=" + i * j)
}
} |
s359665904 | p00000 | u232783413 | 1509637150 | Python | Python | py | Runtime Error | 0 | 0 | 84 | for i in range(9):
for i in range(9):
qq = i * j
print("qq") |
s072269595 | p00000 | u232783413 | 1509637505 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | for i in range(9):
for i in range(9):
qq = i * j
print("qq") |
s522423259 | p00000 | u232783413 | 1509638027 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | for i in range(9):
for i in range(9):
qq = i * j
print("qq") |
s260550715 | p00000 | u886119481 | 1509852359 | Python | Python | py | Runtime Error | 0 | 0 | 89 | fori in range(10):
for j in range(10):
print(str(i) + "x" + str(j) + "=" + str(i * j)) |
s436072969 | p00000 | u119127920 | 1509866026 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | object Main {
def main(args: Array[String]): Unit = {
println("Hello World")
}
} |
s559581775 | p00000 | u930302179 | 1510568170 | Python | Python | py | Runtime Error | 0 | 0 | 72 | for i in rang(1,10):
for j in range(1,10):
print "%dx%d=%d"%(i,j,i*j) |
s931437157 | p00000 | u930302179 | 1510568238 | Python | Python | py | Runtime Error | 0 | 0 | 75 | for i in rang(1,10):
??for j in range(1,10):
????print "%dx%d=%d"%(i,j,i*j) |
s498415605 | p00000 | u930302179 | 1510569374 | Python | Python | py | Runtime Error | 0 | 0 | 76 | for i in range(1,10):
??for j in range(1,10):
????print "%dx%d=%d"%(i,j,i*j) |
s292400563 | p00000 | u930302179 | 1510569391 | Python | Python | py | Runtime Error | 0 | 0 | 78 | for i in range(1,10):
??for j in range(1,10):
????print "%dx%d=%d" %(i,j,i*j) |
s502115354 | p00000 | u930302179 | 1510569473 | Python | Python | py | Runtime Error | 0 | 0 | 80 | for i in range(1,10):
??for j in range(1,10):
????print "%dx%d=%d" %(i , j,i*j) |
s225061459 | p00000 | u811314383 | 1510751084 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | for i=1 in range(9):
for j=1 in range(9):
print(str(i) + 'x' + str(j) + '=' + str(i*j)) |
s853482900 | p00000 | u811314383 | 1510751258 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | for i=1 in range(10):
for j=1 in range(10):
if(i > 0 and j > 0):
print(str(i) + 'x' + str(j) + '=' + str(i*j)) |
s511105141 | p00000 | u842823276 | 1513128736 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | for a in range(1, 10):
for b in range(1, 10):
print("{}x{}={}".format(a, b, a*b)}) |
s608930623 | p00000 | u119252499 | 1514283367 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | for i in range(9):
for j in range(9):
print(i+1 + "x" + j+1 + "=" + i*j) |
s692046113 | p00000 | u538972897 | 1515109955 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | for i in range(1, 10):
for j in range(1, 10):
print str(i) + 'x' + str(j) + '=' + str(i * j)
|
s005649984 | p00000 | u764789069 | 1515257224 | Python | Python | py | Runtime Error | 0 | 0 | 139 | # -*- coding: utf-8 -*-
for i in range(1,10):
for j in range(1,10):
ans = i * j
print(u"{0}×{1}={2}".format(i,j,ans))
|
s912318994 | p00000 | u011621222 | 1515566890 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | for i in range(1,10):
for j in range(1,10);
print('{}x{}={}', i, j, i*j)
|
s598914261 | p00000 | u772040231 | 1516001386 | Python | Python | py | Runtime Error | 0 | 0 | 79 | for i in range(1,10):
for j in range(1,10):
print(i 'x' j '=' i*j)
|
s796164658 | p00000 | u748055360 | 1521550671 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | for(a in range(1,9)):
for(b in range(1,9)):
print(a,"x",b,"=",a*b)
|
s229236941 | p00000 | u577593877 | 1521553281 | Python | Python | py | Runtime Error | 0 | 0 | 81 | for a in range(10):
for b in range(10):
i = a x b
print(a,"x" ,b ,"=",i)
|
s709192904 | p00000 | u577593877 | 1521553347 | Python | Python | py | Runtime Error | 0 | 0 | 80 | for a in range(10):
for b in range(10):
i = a x b
print(a,"x" ,b ,"=",i)
|
s216862006 | p00000 | u577593877 | 1521553405 | Python | Python | py | Runtime Error | 0 | 0 | 76 | for a in range(10):
for b in range(10):
i = a x b
print(a,"x",b,"=",i)
|
s582295148 | p00000 | u577593877 | 1521554036 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for a in range(1,10):
for b in range(1,10):
i = a * b
print(a,"x",b,"=",i,sep="")
|
s731737463 | p00000 | u577593877 | 1521554084 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for a in range(1,10):
for b in range(1,10):
i = a * b
print(a,"x",b,"=",i,sep="")
|
s026132519 | p00000 | u577593877 | 1521554095 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for a in range(1,10):
for b in range(1,10):
i = a * b
print(a,"x",b,"=",i,sep="")
|
s355931436 | p00000 | u577593877 | 1521554197 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for a in range(1,10):
for b in range(1,10):
i = a * b
print(a,"x",b,"=",i,sep="")
|
s004954171 | p00000 | u215863296 | 1524042109 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a=1
b=1
while a<=9
while b<=9
print (a"x"b"="a*b")
b+=1
a+=1
|
s834585465 | p00000 | u284260266 | 1526988680 | Python | Python3 | py | Runtime Error | 0 | 0 | 204 | for i in range(1, 10):
for j in range(1, 10):
print('{}×{}='.format(i,j), i*j)
exit()for i in range(1, 10):
for j in range(1, 10):
print(str(i)+'×'+str(j)+'='+str(i*j))
exit()
|
s749853974 | p00000 | u745214779 | 1527646289 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | for i in range(1,10):
for j in range(1,10):
print(i * j)
|
s736544623 | p00000 | u745214779 | 1527646337 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | for i in range(1,10):
for j in range(1,10):
print(i * j)
print()
|
s969097114 | p00000 | u745214779 | 1527646514 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | for i in range(1,10):
for j in range(1,10):
print(i, x, j, =, i*j)
|
s208795437 | p00000 | u745214779 | 1527664705 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | for i in range(1,10):
for j in range(1,10):
print(i, x, j, =, i * j)
print()
|
s951974370 | p00000 | u745214779 | 1527666420 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | h = x
for i in range (1,10):
for j in range (1,10):
print(i, h, j, i*j)
|
s880708255 | p00000 | u387614087 | 1527957924 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i=0;i<9;i++
for j=0;j<9;j++;j++
print(i+1,"x",j+1"=",(i+1)*(j+1)),
print("")
|
s137678913 | p00000 | u387614087 | 1527957959 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i=0;i<9;i++
for j=0;j<9;j++;j++
print(i+1,"x",j+1"=",(i+1)*(j+1),)
print("")
|
s555658159 | p00000 | u483248490 | 1528875791 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | for i in range(1,10):
for j in range(1,10):
print str(i)+"x"+str(j)"="+str(i*j)
|
s443063835 | p00000 | u483248490 | 1528875905 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i in range(1,10):
for j in range(1,10):
print str(i)+"x"+str(j)+"="+str(i*j)
|
s006149945 | p00000 | u483248490 | 1528876124 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | for i in range(1,10):
for j in range(1,10):
print str(i) + "x" + str(j) + "=" + str(i*j)
|
s936730332 | p00000 | u239707270 | 1529141101 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | for i in range(1,10):
for j in range(1,10):
print(i"×"j"="i*j)
|
s548936650 | p00000 | u498680922 | 1351612565 | Python | Python | py | Runtime Error | 0 | 0 | 83 | or i in range(1,10):
for r in range(1,10):
print "%s*%s=%s" % (i,r,i*r) |
s058367766 | p00000 | u647766105 | 1360222234 | Python | Python | py | Runtime Error | 0 | 0 | 178 | function Main(input) {
for(i=1;i<10;i++){
for(j=1;j<10;j++){
console.log("%dx%d=%d",i,j,i*j);
}
}
}
//input
Main(require("fs").readFileSync("/dev/stdin", "utf8")); |
s208475567 | p00000 | u647766105 | 1360222301 | Python | Python | py | Runtime Error | 0 | 0 | 83 | for(i=1;i<10;i++){
for(j=1;j<10;j++){
console.log("%dx%d=%d",i,j,i*j);
}
} |
s583451555 | p00000 | u282635979 | 1362238465 | Python | Python | py | Runtime Error | 0 | 0 | 202 | a = 1
b = 1
while True:
if a != 10:
while True:
print(str(a) + 'x' + str(b) + '=' + str(a*b))
b += 1
if b != 10:
continue
else:
b = 1
a += 1
break
continue
else:
break |
s498572853 | p00000 | u760351030 | 1367392289 | Python | Python | py | Runtime Error | 0 | 0 | 81 | for i in range(1,10):$
^Ifor j in range(1,10):$
^I^Iprint i,"*",j,"=",i*j$ |
s066607598 | p00000 | u760351030 | 1367392319 | Python | Python | py | Runtime Error | 0 | 0 | 80 | for i in range(1,10):$
for j in range(1,10):$
print i,"*",j,"=",i*j$ |
s458800281 | p00000 | u760351030 | 1367392352 | Python | Python | py | Runtime Error | 0 | 0 | 72 | for i in range(1,10):
for j in range(1,10):
print i,"*",j,"=",i*j |
s953981095 | p00000 | u814249052 | 1368360971 | Python | Python | py | Runtime Error | 0 | 0 | 102 | for i in range(1, 10):
for j in range(1, 10):
print str(i) + 'x' + str(j) + '=' str(i * j) |
s417179663 | p00000 | u228756885 | 1376480690 | Python | Python | py | Runtime Error | 0 | 0 | 77 | for i in range(1:10):
for j in range(1:10):
print "%dx%d=%d" % (i, j, i*j) |
s886125313 | p00000 | u228756885 | 1376480772 | Python | Python | py | Runtime Error | 0 | 0 | 81 | for i in range(1, 10):
for j in range(1, 10):
print "%dx%d=%d" % (i, j, i*j) |
s317375907 | p00000 | u023846178 | 1385933749 | Python | Python | py | Runtime Error | 0 | 0 | 5 | for i |
s915708246 | p00000 | u786185717 | 1386952623 | Python | Python | py | Runtime Error | 0 | 0 | 88 | print str(i) + 'x' + str(j) + '=' + str(i * j) for j in range(1,10) for i in range(1,10) |
s546719937 | p00000 | u912237403 | 1390115076 | Python | Python | py | Runtime Error | 0 | 0 | 64 | A=range(1,10)
for i in A:
for j in A:
print i,"x",j,"=",i*j |
s855931323 | p00000 | u912237403 | 1390115114 | Python | Python | py | Runtime Error | 0 | 0 | 63 | A=range(1,10)
for i in A:
for j in A:
print i,"x",j,"=",i*j |
s463928891 | p00000 | u446235837 | 1395590479 | Python | Python | py | Runtime Error | 0 | 0 | 73 | for i in range(10):
for s in range(10):
print i+"*"+s+"="+i*s |
s184277671 | p00000 | u633068244 | 1397313039 | Python | Python | py | Runtime Error | 0 | 0 | 142 | #include <stdio.h>
int main(void) {
int i,j;
for (i=1;i<10;i++){
for (j=1;j<10;j++){
printf("%dx%d=%d\n",i,j,i*j);
}
}
return 0;
} |
s600146890 | p00000 | u525640557 | 1402313006 | Python | Python | py | Runtime Error | 0 | 0 | 97 | i=1
j=i
while i<=9
while j<=9
a=i*j
print a
i=i+1 |
s707094442 | p00000 | u525640557 | 1402380527 | Python | Python | py | Runtime Error | 0 | 0 | 1 | a |
s010633336 | p00001 | u525366883 | 1535370928 | Python | Python | py | Runtime Error | 0 | 0 | 145 | moutain = [0 for i in range(10]
for i in range(10):
moutain[i] = int(raw_input())
moutain.sort().reverse()
for i in range(3):
moutain[i]
|
s553694312 | p00001 | u525366883 | 1535370942 | Python | Python | py | Runtime Error | 0 | 0 | 146 | moutain = [0 for i in range(10)]
for i in range(10):
moutain[i] = int(raw_input())
moutain.sort().reverse()
for i in range(3):
moutain[i]
|
s114098703 | p00001 | u580227385 | 1535441507 | Python | Python3 | py | Runtime Error | 0 | 0 | 210 | if __name__ == '__main__':
hight = input().split()
num = [int(n) for n in hight]
print(sorted(num, reverse=True)[0])
print(sorted(num, reverse=True)[1])
print(sorted(num, reverse=True)[2])
|
s786015254 | p00001 | u580227385 | 1535442992 | Python | Python3 | py | Runtime Error | 0 | 0 | 181 | if __name__ == '__main__':
hight = int(input()).split()
print(sorted(num, reverse=True)[0])
print(sorted(num, reverse=True)[1])
print(sorted(num, reverse=True)[2])
|
s461348648 | p00001 | u580227385 | 1535443153 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | if __name__ == '__main__':
hight = int(input()).split()
print(sorted(num, reverse=True)[i] for i in range(0, 3))
|
s586060194 | p00001 | u580227385 | 1535443558 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | hight = input().split()
num = [int(n) for n in hight]
print(sorted(num)[-1])
print(sorted(num)[-2])
print(sorted(num)[-3])
|
s504277282 | p00001 | u580227385 | 1535443721 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | hight = input().split("\n")
num = [int(n) for n in hight]
print(sorted(num)[-1])
print(sorted(num)[-2])
print(sorted(num)[-3])
|
s016107060 | p00001 | u580227385 | 1535444378 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | num = [int(input()) for i in range(10)]
num.sort(reverse=True)
for i in range[0:3]:
print(num[i])
|
s002906570 | p00001 | u668055645 | 1545265887 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | l = []
for i in range(10):
l.append(int(input))
l.sort()
for i in range(3):
print(l[i])
|
s725820419 | p00001 | u862333119 | 1545689311 | Python | Python3 | py | Runtime Error | 0 | 0 | 315 | #include <iostream>
#include <set>
using namespace std;
int main() {
multiset<int, greater<int>> ms; int temp;
for (int i = 0; i < 10; i++) {
cin >> temp; ms.insert(temp);
}
multiset<int, greater<int>>::iterator itr = ms.begin();
for (int i = 0; i < 3; i++, ++itr) {
cout << *itr << endl;
}
return 0;
}
|
s194894054 | p00001 | u563307622 | 1556298743 | Python | Python3 | py | Runtime Error | 0 | 0 | 215 | a_list = []
for i in range(10):
while True:
a = input()
a = int(a)
if 0<a and a<10000:break
a_list.append(a)
for i in range(3):
print(max(a_list))
a_list.remove(max(a_list))
|
s877724815 | p00001 | u696166817 | 1409285139 | Python | Python | py | Runtime Error | 0 | 0 | 233 | import sys
#list = sys.stdin.readlines()
i=0
list = []
for line in sys.stdin.readlines():
list.append(int(line.strip("\n")))
print soted(list, reverse=True)[0]
print soted(list, reverse=True)[1]
print soted(list, reverse=True)[2] |
s347070175 | p00001 | u607831289 | 1415989508 | Python | Python | py | Runtime Error | 0 | 0 | 130 | import sys
mt_heigts = map(int, sys.stdin.readlines())
mt_heigts.sort(reverse=True)
for height in mt_heights[:3]:
print height |
s068025056 | p00001 | u567380442 | 1422528726 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | import sys
mountains = [int(line.readline()) for line in sys.stdin]
for height in sorted(mountains)[-3:][::-1]:
print(height) |
s320199506 | p00001 | u349293999 | 1423828535 | Python | Python | py | Runtime Error | 0 | 0 | 136 | # coding: UTF-8
inputs=[]
for i in range(1,10):
inputs.append(input())
inputs.sort(reverse=True)
for i in range(0,3):
print x[i] |
s396873093 | p00001 | u888595898 | 1428738886 | Python | Python3 | py | Runtime Error | 0 | 0 | 234 | a = 0
b = 0
c = 0
for i in range(0, 10):
inputNum = int(raw_input())
if a < inputNum:
a = inputNum
continue
elif b < inputNum:
b = inputNum
continue
elif c < inputNum:
c = inputNum
print a
print b
print c |
s747374692 | p00001 | u308369184 | 1430556061 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | a=[]
b=a.sort()
c=b.reverse()
print(c[0:2]) |
s727297485 | p00001 | u308369184 | 1430556858 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a=i[nt(input()) i in range(10)]
a.sort
a.reverse
print(a[0:2]) |
s900911440 | p00001 | u308369184 | 1430556887 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a=i[nt(input()) i in range(10)]
a.sort()
a.reverse()
print(a[0:2]) |
s443188642 | p00001 | u308369184 | 1430556900 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a=[int(input()) i in range(10)]
a.sort()
a.reverse()
print(a[0:2]) |
s795603556 | p00001 | u747594996 | 1433906928 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 |
list = []
for i in range(10):
hill = int(input())
list.append(hill)
sorted(list)
h1 = a[9]
h2 = a[8]
h3 = a[7]
print(h1)
print(h2)
print(h3) |
s112626230 | p00001 | u747594996 | 1433932409 | Python | Python3 | py | Runtime Error | 0 | 0 | 249 | def main():
number = []
for i in range(10):
num = int(input())
number.append(num)
numbers = number.sorted(number)
print(numbers[9])
print(numbers[8])
print(numbers[7])
if __name__=='__main__':
main() |
s579096540 | p00001 | u622015302 | 1434826160 | Python | Python | py | Runtime Error | 0 | 0 | 95 | while 1:
list = raw_input().split()
x = int(list[0]) + int(list[1])
print "%d" % len(str(x)) |
s230625124 | p00001 | u472944603 | 1436953462 | Python | Python | py | Runtime Error | 0 | 0 | 113 | data = map(int, raw_input().split())
data = sorted(data)
data.reverse()
for i in range(3):
print data[i]
|
s492147417 | p00001 | u390422052 | 1437206322 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | s = []
for i in xrange(10):
s.append(int(raw_input()))
s.sort()
s.reverse()
for i in xrange(3):
print s[i] |
s163374077 | p00001 | u390422052 | 1437206327 | Python | Python | py | Runtime Error | 0 | 0 | 106 | s = []
for i in xrange(10):
s.append(int(raw_input()))
s.sort()
s.reverse()
for i in xrange(3):
print s[i] |
s332255293 | p00001 | u472944603 | 1437398512 | Python | Python | py | Runtime Error | 0 | 0 | 114 | data = map(int, raw_input().split())
data = sorted(data)
data.reverse()
for i in range(3):
print data[i]
|
s311728996 | p00001 | u071010747 | 1445158714 | Python | Python3 | py | Runtime Error | 0 | 0 | 294 | # -*- coding:utf-8 -*-
def main():
List=[]
while(True):
a=input()
if a=="":
break
else:
List.append(a)
List.sort(reverse=True)
print(List[0])
print(List[1])
print(List[2])
if __name__ == '__main__':
main() |
s863807995 | p00001 | u313846744 | 1447768439 | Python | Python | py | Runtime Error | 0 | 0 | 125 | input = [12,123,1221,5231,412,5123,4512,21234,21351,1143]
sort_input = input.sort()
for x in range(1,4)
print sort_input[-x] |
s344421368 | p00001 | u313846744 | 1447768474 | Python | Python | py | Runtime Error | 0 | 0 | 125 | input = [12,123,1221,5231,412,5123,4512,21234,21351,1143]
sort_input = input.sort()
for x in range(1,4)
print sort_input[-x] |
s924999770 | p00001 | u313846744 | 1447768523 | Python | Python | py | Runtime Error | 0 | 0 | 126 | input = [12,123,1221,5231,412,5123,4512,21234,21351,1143]
sort_input = input.sort()
for x in range(1,4):
print sort_input[-x] |
s337995091 | p00001 | u313846744 | 1447768637 | Python | Python | py | Runtime Error | 0 | 0 | 113 | input = [12,123,1221,5231,412,5123,4512,21234,21351,1143]
input.sort()
for x in range(1,4):
print sort_input[-x] |
s983483540 | p00001 | u982618289 | 1448942371 | Python | Python3 | py | Runtime Error | 0 | 0 | 184 | from numpy.random import mtrand
mt = []
for i in range(10):
mt.append(input())
print(mt.pop(mt.index(max(mt))))
print(mt.pop(mt.index(max(mt))))
print(mt.pop(mt.index(max(mt)))) |
s649284478 | p00001 | u982618289 | 1448943016 | Python | Python3 | py | Runtime Error | 0 | 0 | 220 | # - coding:utf-8 -*-
from numpy.random import mtrand
mt = []
for i in range(10):
mt.append(input())
print(str(mt.pop(mt.index(max(mt)))))
print(str(mt.pop(mt.index(max(mt)))))
print(str(mt.pop(mt.index(max(mt))))) |
s965266229 | p00001 | u982618289 | 1448943355 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | mt = []
for i in range(10):
mt.append(int(input().strip()))
mt.sort().reverse()
print( mt[0] )
print( mt[1] )
print( mt[2] ) |
s600519487 | p00001 | u302511098 | 1452788963 | Python | Python | py | Runtime Error | 0 | 0 | 201 | n = input()
#a = [39, 98, 44, 13, 88, 53, 10]
a = [input() for i in range(n)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i |
s438124955 | p00001 | u302511098 | 1452789040 | Python | Python | py | Runtime Error | 0 | 0 | 167 | N = input()
a = [input() for i in range(N)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i |
s577565988 | p00001 | u302511098 | 1452789065 | Python | Python | py | Runtime Error | 0 | 0 | 167 | N = input()
a = [input() for i in range(N)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i |
s477602087 | p00001 | u302511098 | 1452789192 | Python | Python | py | Runtime Error | 0 | 0 | 169 | 10 = input()
a = [input() for i in range(10)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i |
s462167801 | p00001 | u302511098 | 1452789894 | Python | Python | py | Runtime Error | 0 | 0 | 168 | n = input()
a = [input() for i in range(10)]
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i |
s942377811 | p00001 | u302511098 | 1452790057 | Python | Python | py | Runtime Error | 0 | 0 | 183 | N = input()
a = []
for i in range(N):
a.append(input())
b = [0, 0, 0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i |
s083692626 | p00001 | u302511098 | 1452790223 | Python | Python | py | Runtime Error | 0 | 0 | 177 | N = input()
a = []
for i in range(N):
a.append(input())
b = [0]
for i in a:
j = 0
while j < 3:
if i > b[j]:
b.insert(j, i)
break
j += 1
for i in b[:3]:
print i |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.