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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s839011815 | p02393 | u831244171 | 1477487354 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | x = raw_input().split()
m = map(int,x)
m.sort()
a = m[0]
b = m[1]
c = m[2]
print a,b,c |
s607382773 | p02393 | u831244171 | 1477487364 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | x = raw_input().split()
m = map(int,x)
sorted(m)
a = m[0]
b = m[1]
c = m[2]
print a,b,c |
s269739985 | p02393 | u831244171 | 1477487378 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | x = raw_input().split()
m = map(int,x)
m.sort()
a = m[0]
b = m[1]
c = m[2]
print a,b,c |
s537300364 | p02393 | u831244171 | 1477487403 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | x = raw_input().split()
m = map(int,x)
m.sort()
a = m[0]
b = m[1]
c = m[2]
print a,b,c |
s378288369 | p02393 | u967794515 | 1477839155 | Python | Python3 | py | Runtime Error | 0 | 0 | 379 | # coding: utf-8
# Here your code !
a,b,c = input().split()
if(a <= b <= c):
print('%d %d %d'%(a,b,c))
if(a >= b >= c):
print('%d %d %d'%(c,b,a))
if(a > c > b):
print('%d %d %d'%(a,c,b))
if(b > a >= c):
print('%d %d %d'%(b,a,c))
if(b > c > a):
print('%d %d %d'%(b,c,a))
if(c > b >= a):
print('%d %d %d'%(c,b,a))
if(c > a > b):
print('%d %d %d'%(c,a,b)) |
s653443665 | p02393 | u556014061 | 1478071317 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = list(map(int, input().split()))
num = x.sort()
print(num[0], num[1], num[2]) |
s652858836 | p02393 | u967904307 | 1478231202 | Python | Python | py | Runtime Error | 0 | 0 | 60 | L = map(int, raw_input().split())
L.sort()
print " ".join(L) |
s288413659 | p02393 | u326248180 | 1478758380 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | map(int, input().split()).sort() |
s185998320 | p02393 | u326248180 | 1478758467 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | d = map(int, input().split()).sort()
sorted(d.items(), key=lambda x: x[1]) |
s464094861 | p02393 | u326248180 | 1478758481 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | d = map(int, input().split())
sorted(d.items(), key=lambda x: x[1]) |
s413745577 | p02393 | u326248180 | 1478758604 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | ary = input().split().sort()
print("{} {} {}".format(ary[0], ary[1], ary[2])) |
s357280387 | p02393 | u326248180 | 1478758639 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | ary = input().split().sort()
print(ary[0]) |
s752289898 | p02393 | u326248180 | 1478758650 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | ary = input().split().sort()
print(ary(0)) |
s554634209 | p02393 | u326248180 | 1478758728 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | ary = list(map(input().split())).sort()
print(ary[0]) |
s295089764 | p02393 | u326248180 | 1478758738 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | ary = list(map(int, input().split())).sort()
print(ary[0]) |
s742602259 | p02393 | u326248180 | 1478758751 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | d = map(int, input().split())
d.sort()
print(d[0]) |
s877512004 | p02393 | u694307805 | 1479358470 | Python | Python3 | py | Runtime Error | 0 | 0 | 241 | a, b, c = map (int, input().split())
if a < b:
if a < c:
if b < c:
print(a, b, c)
else:
print(a, c, b)
else:
print(c, a, b)
else:
if b < c:
if a < c:
print(b, a, c)
else:
print(b, c, a)
else:
print(c, b, a)
|
s274077032 | p02393 | u694307805 | 1479358504 | Python | Python3 | py | Runtime Error | 0 | 0 | 241 | a, b, c = map (int, input().split())
if a < b:
if a < c:
if b < c:
print(a, b, c)
else:
print(a, c, b)
else:
print(c, a, b)
else:
if b < c:
if a < c:
print(b, a, c)
else:
print(b, c, a)
else:
print(c, b, a)
|
s727074632 | p02393 | u742376116 | 1479369358 | Python | Python | py | Runtime Error | 0 | 0 | 145 | a, b, c = map(int, raw_input(' '))
l = []
l.append(a)
l.append(b)
l.append(c)
l = sorted(l)
print str(l[0]) + ' ' + str(l[1]) + ' ' + str(l[2]) |
s398641576 | p02393 | u234837959 | 1481244945 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | list = map(int, input().split(" "))
list = map(str, list.sort())
print(list[0] + " " + list[1] + " " + list[2]) |
s333057579 | p02393 | u234837959 | 1481245002 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | list = map(int, input().split(" "))
print(list)
list = map(str, list.sort())
print(list)
print(list[0] + " " + list[1] + " " + list[2]) |
s633899878 | p02393 | u234837959 | 1481369270 | Python | Python3 | py | Runtime Error | 0 | 0 | 161 | list1 = input().split(" ")
list2 = list(map(int, list1))
list3 = list2.sort()
list4 = list(map(str, list3))
answer_string = " ".join(list4)
print(answer_string) |
s623690726 | p02393 | u693424532 | 1481635299 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = list(map(input().split()))
a.sort()
print(a[0],a[1],a[2]) |
s695026045 | p02393 | u493187281 | 1482678709 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a=int(input())
b=int(input())
c=int(input())
ABC=[a,b,c]
ABC.sort()
print(ABC) |
s379674640 | p02393 | u019678978 | 1482899116 | Python | Python | py | Runtime Error | 0 | 0 | 406 | a,b,c = map(int, raw_input().split(" "))
if a > b :
if a > c :
if b > c :
print(%d %d %d)% a b c
elif c > b :
print(%d %d %d)% a c b
else c > a :
print(%d %d %d)% c a b
elif b > a :
if b > c :
if a > c
print(%d %d %d)% b a c
elif c > a :
print(%d %d %d)% b c a
else c > b
print(%d %d %d)% c b a |
s347283576 | p02393 | u019678978 | 1482899144 | Python | Python | py | Runtime Error | 0 | 0 | 410 | a,b,c = map(int, raw_input().split(" "))
if a > b :
if a > c :
if b > c :
print(%d %d %d)% a b c
elif c > b :
print(%d %d %d)% a c b
else c > a :
print(%d %d %d)% c a b
elif b > a :
if b > c :
if a > c :
print(%d %d %d)% b a c
elif c > a :
print(%d %d %d)% b c a
else c > b :
print(%d %d %d)% c b a |
s627238810 | p02393 | u019678978 | 1482899312 | Python | Python | py | Runtime Error | 0 | 0 | 410 | a,b,c = map(int, raw_input().split(" "))
if a > b :
if a > c :
if b > c :
print(%d %d %d)% a b c
elif c > b :
print(%d %d %d)% a c b
else c > a :
print(%d %d %d)% c a b
elif b > a :
if b > c :
if a > c :
print(%d %d %d)% b a c
elif c > a :
print(%d %d %d)% b c a
else c > b :
print(%d %d %d)% c b a |
s828816613 | p02393 | u019678978 | 1482899825 | Python | Python | py | Runtime Error | 0 | 0 | 373 | a,b,c = map(int, raw_input().split(" "))
if a <= b :
if a <= b <= c :
print("%d %d %d" % a b c)
elif a <= c <= b :
print("%d %d %d" % a c b)
else :
print("%d %d %d" % c a b)
else :
if b <= a <= c :
print("%d %d %d" % b a c)
elif b <= c <= a :
print("%d %d %d" % b c a)
else :
print("%d %d %d" % c b a) |
s466037348 | p02393 | u019678978 | 1482899888 | Python | Python3 | py | Runtime Error | 0 | 0 | 373 | a,b,c = map(int, raw_input().split(" "))
if a <= b :
if a <= b <= c :
print("%d %d %d" % a b c)
elif a <= c <= b :
print("%d %d %d" % a c b)
else :
print("%d %d %d" % c a b)
else :
if b <= a <= c :
print("%d %d %d" % b a c)
elif b <= c <= a :
print("%d %d %d" % b c a)
else :
print("%d %d %d" % c b a) |
s547342695 | p02393 | u019678978 | 1482900167 | Python | Python3 | py | Runtime Error | 0 | 0 | 463 | a,b,c = map(int, raw_input().split(" "))
if a <= b :
if a <= b <= c :
print("{1} {2} {3}".format(1=a,2=b,3=c))
elif a <= c <= b :
print("{1} {2} {3}".format(1=a,2=c,3=b))
else :
print("{1} {2} {3}".format(1=c,2=a,3=b))
else :
if b <= a <= c :
print("{1} {2} {3}".format(1=b,2=a,3=c))
elif b <= c <= a :
print("{1} {2} {3}".format(1=b,2=c,3=a))
else :
print("{1} {2} {3}".format(1=c,2=b,3=a)) |
s848809358 | p02393 | u019678978 | 1482900173 | Python | Python | py | Runtime Error | 0 | 0 | 463 | a,b,c = map(int, raw_input().split(" "))
if a <= b :
if a <= b <= c :
print("{1} {2} {3}".format(1=a,2=b,3=c))
elif a <= c <= b :
print("{1} {2} {3}".format(1=a,2=c,3=b))
else :
print("{1} {2} {3}".format(1=c,2=a,3=b))
else :
if b <= a <= c :
print("{1} {2} {3}".format(1=b,2=a,3=c))
elif b <= c <= a :
print("{1} {2} {3}".format(1=b,2=c,3=a))
else :
print("{1} {2} {3}".format(1=c,2=b,3=a)) |
s773931538 | p02393 | u019678978 | 1482900222 | Python | Python | py | Runtime Error | 0 | 0 | 470 | a,b,c = map(int, raw_input().split(" "))
if a <= b :
if a <= b <= c :
print("{1} {2} {3}".format(1=a,2=b,3=c))
elif a <= c <= b :
print("{1} {2} {3}".format(1=a,2=c,3=b))
else :
print("{1} {2} {3}".format(1=c,2=a,3=b))
else b <= a :
if b <= a <= c :
print("{1} {2} {3}".format(1=b,2=a,3=c))
elif b <= c <= a :
print("{1} {2} {3}".format(1=b,2=c,3=a))
else :
print("{1} {2} {3}".format(1=c,2=b,3=a)) |
s796384456 | p02393 | u019678978 | 1482900393 | Python | Python3 | py | Runtime Error | 0 | 0 | 302 | a,b,c = map(int, raw_input().split(" "))
if a <= b :
if a <= b <= c :
print(a,b,c)
elif a <= c <= b :
print(a,c,b)
else :
print(c,a,b)
else b <= a :
if b <= a <= c :
print(b,a,c)
elif b <= c <= a :
print(b,c,a)
else :
print(c,b,a) |
s983536498 | p02393 | u019678978 | 1482900609 | Python | Python3 | py | Runtime Error | 0 | 0 | 302 | a,b,c = map(int, raw_input().split(" "))
if a <= b :
if a <= b <= c :
print(a,b,c)
elif a <= c <= b :
print(a,c,b)
else :
print(c,a,b)
elif b <= a :
if b <= a <= c :
print(b,a,c)
elif b <= c <= a :
print(b,c,a)
else :
print(c,b,a) |
s564446392 | p02393 | u019678978 | 1482902606 | Python | Python | py | Runtime Error | 0 | 0 | 75 | al = list(map(int, raw_input().split(" "))).sort()
print(al[0],al[1],al[2]) |
s703026297 | p02393 | u019678978 | 1482902613 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | al = list(map(int, raw_input().split(" "))).sort()
print(al[0],al[1],al[2]) |
s789000209 | p02393 | u019678978 | 1482902641 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | al = list(map(int, raw_input().split())).sort()
print(al[0],al[1],al[2]) |
s528627204 | p02393 | u019678978 | 1482902751 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | al = list(map(int, raw_input().split()))
al = sorted(al)
print(al[0],al[1],al[2]) |
s883158601 | p02393 | u159126725 | 1483945637 | Python | Python | py | Runtime Error | 0 | 0 | 83 | a, b, c = map(int, raw_input().split())
l = [a, b, c].sort()
print l[0], l[1], l[2] |
s299088576 | p02393 | u256874901 | 1484052476 | Python | Python | py | Runtime Error | 0 | 0 | 109 | #coding:utf-8
data = sorted([int(i) for i in input().split()])
s=""
for x in data:
s+=(str(x)+" ")
print(s) |
s925834274 | p02393 | u227438830 | 1487017685 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | z = input()
l = z.split()
l.sort()
print("%s %s %s" % l[0],l[1],l[2]) |
s713439148 | p02393 | u024715419 | 1488156564 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | inp = input().split()
l = list(map(int,inp)).sort
print(l[0],l[1],l[2]) |
s029899206 | p02393 | u024715419 | 1488156612 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | inp = input().split()
l = list(map(int,inp)).sort()
print(l[0],l[1],l[2]) |
s183843695 | p02393 | u024715419 | 1488156634 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | inp = input().split()
l = list(map(int,inp))
l = l.sort()
print(l[0],l[1],l[2]) |
s603593636 | p02393 | u024715419 | 1488161468 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | inp = list(map(int,input().split()))
l = inp.sort()
print(l[0],l[1],l[2]) |
s248196816 | p02393 | u024715419 | 1488161584 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | inp = list(map(int,input().split()))
l = inp.sort()
print(l[0],l[1],l[2]) |
s193781082 | p02393 | u024715419 | 1488161809 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | inp = list(map(int,input().split()))
l = inp.sort()
print(l[0],l[1],l[2]) |
s749355658 | p02393 | u024715419 | 1488161937 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | inp =list(map(int,input().split()))
l=inp.sort()
print(l[0],l[1],l[2]) |
s429159591 | p02393 | u024715419 | 1488161952 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | inp =list(map(int,input().split()))
l=inp.sort()
print(l[0],l[1],l[2]) |
s839976423 | p02393 | u156091054 | 1488781130 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | x = list(map(int, input(),split())
x.sort()
print(x[0], x[1], x[2]) |
s410100730 | p02393 | u156091054 | 1488781176 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | x = list(map(int, input()))
x.sort()
print(x[0], x[1], x[2]) |
s634344890 | p02393 | u921541953 | 1489203587 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = list(map(int, input().split()))
a = sorted(a)
' '.join(a) |
s620929712 | p02393 | u756958775 | 1489310793 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x = map(int, input().split())
x.sort()
print(x) |
s228656297 | p02393 | u275742248 | 1489759061 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | lst = list(map(int, input().split()))
for i in lst.sort():
print('{}'.format(i), end='') |
s233351171 | p02393 | u275742248 | 1489759285 | Python | Python | py | Runtime Error | 0 | 0 | 95 | lst = list(map(int, input().split(' ')))
for i in sorted(lst):
print('{} '.format(i), end='') |
s848643210 | p02393 | u042882066 | 1490665828 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | list = int(input()).sort()
a, b, c = map(split(), list)
print("{a} {b} {c}").format(a=a, b=b, c=c) |
s238689624 | p02393 | u042882066 | 1490665829 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | list = int(input()).sort()
a, b, c = map(split(), list)
print("{a} {b} {c}").format(a=a, b=b, c=c) |
s260034877 | p02393 | u042882066 | 1490666025 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | data = int(input())
list = sorted(data)
print("{a} {b} {c}").format(a=list[0], b=list[1], c=list[2]) |
s831457737 | p02393 | u042882066 | 1490666067 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | data = int(input()).split(" ")
list = sorted(data)
print("{a} {b} {c}").format(a=list[0], b=list[1], c=list[2]) |
s199103098 | p02393 | u042882066 | 1490666136 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | data = int(input())
list = data.split(" ")
list.sort()
print("{a} {b} {c}").format(a=list[0], b=list[1], c=list[2]) |
s786211083 | p02393 | u042882066 | 1490666158 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | data = int(input())
list = data.split(" ")
list.sort()
print("{a} {b} {c}".format(a=list[0], b=list[1], c=list[2])) |
s014398281 | p02393 | u042882066 | 1490666226 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | data = int(input())
list = data.split(" ")
list.sort()
print("{0} {1} {2}".format(list[0], list[1], list[2])) |
s930202137 | p02393 | u606989659 | 1491032214 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a = map(int,input().split())
b = a.sort()
c = ' '.join(b)
print(c) |
s463744645 | p02393 | u606989659 | 1491032793 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = map(int,input().split())
b = a.sort()
print(b[0] b[1] b[2]) |
s679283618 | p02393 | u606989659 | 1491032948 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a = map(int,input().split())
b = a.sort()
print('{} {} {}'.format(b[0],b[1],b[2])) |
s572709292 | p02393 | u606989659 | 1491034640 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | x = list(map(int,input().split()))
y = x.sort()
print(y[0], y[1], y[2]) |
s221783516 | p02393 | u470964735 | 1492054615 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | l = list(map(int, input().split()))
l.sort()
print(" ".join(l)) |
s380172736 | p02393 | u470964735 | 1492054718 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | l = list(map(int, input().split()))
l.sort()
print(l[0], l[1], l[[2]) |
s226665570 | p02393 | u619570677 | 1492408012 | Python | Python3 | py | Runtime Error | 0 | 0 | 225 | if a < b:
if a < c:
if b < c:
print(a < b < c)
else:
print("a < c < b")
else:
print("c < a < b")
elif a > b:
if a > c:
if b < c:
print("b < c < a")
else:
print("c < b < a")
else:
print("b < c < a") |
s228231659 | p02393 | u619570677 | 1492432543 | Python | Python3 | py | Runtime Error | 0 | 0 | 320 | a,b,c = list(map(int,input().split()))
if a < b:
if b < c:
print(a < b < c)
else:
print("a < c < b")
else:
print("c < a < b")
elif a > b:
if a > c:
if b < c:
print("b < c < a")
else:
print("c < b < a")
else:
print("b < c < a") |
s397821716 | p02393 | u619570677 | 1492437174 | Python | Python3 | py | Runtime Error | 0 | 0 | 175 | a,b,c = list(map(int,input().split()))
temp = 0
if a > b:
temp = a
a = b
b = temp
if b > c:
temp = b
b = c
c = temp
if a > b:
temp = a
a = b
b = temp
print(a,b,c) |
s163799879 | p02393 | u619570677 | 1492437204 | Python | Python3 | py | Runtime Error | 0 | 0 | 179 | a,b,c = list(map(int,input().split()))
temp = 0
if a > b:
temp = a
a = b
b = temp
if b > c:
temp = b
b = c
c = temp
if a > b:
temp = a
a = b
b = temp
print(a,b,c) |
s592794929 | p02393 | u619570677 | 1492437241 | Python | Python3 | py | Runtime Error | 0 | 0 | 209 | a,b,c = list(map(int,input().split()))
temp = 0
if a > b:
temp = a
a = b
b = temp
if b > c:
temp = b
b = c
c = temp
if a > b:
temp = a
a = b
b = temp
print(a,end=" ")
print(b,end=" ")
print(c) |
s697464145 | p02393 | u619570677 | 1492615115 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | num = map(int, raw_input().split())
num.sort()
printf(num[0], num[1], num[2]) |
s545167327 | p02393 | u619570677 | 1492615164 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | num = map(int, raw_input().split())
num.sort()
print(num[0], num[1], num[2]) |
s939696908 | p02393 | u772010071 | 1493113156 | Python | Python3 | py | Runtime Error | 0 | 0 | 156 | a, b = list(map(int, input().split()))
if a > b:
a,b = b,a
if a > c:
a,c = c,a
if b > c:
b, c = c, b
print(str(a) + " " + str(b) + " " + str(c)) |
s286903567 | p02393 | u772010071 | 1493113178 | Python | Python3 | py | Runtime Error | 0 | 0 | 156 | a, b = list(map(int, input().split()))
if a > b:
a,b = b,a
if a > c:
a,c = c,a
if b > c:
b, c = c, b
print(str(a) + " " + str(b) + " " + str(c)) |
s056325311 | p02393 | u772010071 | 1493113988 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | l = input().split()
d = min(l)
e = max(l)
fl.remove(max(l), min(l))
print(str(d) + " " + f + " " + e) |
s683384082 | p02393 | u772010071 | 1493114006 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | l = input().split()
d = min(l)
e = max(l)
f = l.remove(max(l), min(l))
print(str(d) + " " + f + " " + e) |
s407421266 | p02393 | u772010071 | 1493114266 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | l = input().split()
d = min(l)
e = max(l)
f = l.remove(max(l))
print(str(d) + " " + str(max(f)) + " " + str(e)) |
s739519485 | p02393 | u772010071 | 1493114440 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | l = input().split()
print(min(l) + " " + min(l.remove(min(l))) + " " + max(l)) |
s080937942 | p02393 | u772010071 | 1493114706 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | l = list(map(int, input().split()))
l.sort()
for i in range(l):
if i == len(l)-1:
print(i)
else:
print(i+" ") |
s913457355 | p02393 | u772010071 | 1493114765 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | l = list(map(int, input().split()))
l.sort()
for i in l:
if i == len(l)-1:
print(i)
else:
print(i+" ") |
s508179500 | p02393 | u772010071 | 1493114843 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | l = list(map(int, input().split()))
l.sort()
for i in l:
if i == len(l)-1:
print(l[i])
else:
print(l[i], end = " ") |
s385592427 | p02393 | u003181964 | 1493290492 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | data = input()
data = data.split()
data = map (int, data)
data = sorted (data)
print (" ".join(data)) |
s785698797 | p02393 | u003181964 | 1493290756 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | data = input()
data = data.split()
data = map (int, data)
data = sorted (data)
out = ""
for i in data:
out += i + " "
print (out[:-1]) |
s576525238 | p02393 | u003181964 | 1493290816 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | data = input()
data = data.split()
data = map (int, data)
data = sorted (data)
out = ""
for i in data:
out += i + " "
print (out[:4]) |
s099954126 | p02393 | u003181964 | 1493290858 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | data = input()
data = data.split()
data = map (int, data)
data = sorted (data)
print (":".join(data)) |
s795539282 | p02393 | u419755872 | 1493477707 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | #coding:UTF-8
s = input().split()
a=int(s[0])
b=int(s[1])
c=int(s[2])
if(a>b):
temp=a
a=b
b=tem
if(b>c):
temp=b
b=c
c=temp
else:
print (a,b,c) |
s988667764 | p02393 | u213265973 | 1494228738 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | num = input().split(" ")
n = [int(i) for i in num]
n = sorted(n)
print(" ".join(n)) |
s378397799 | p02393 | u650790815 | 1494332955 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | print(*sorted(input().split()))) |
s177947767 | p02393 | u650790815 | 1495325111 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a,b,c = map(int,input().split())
print(sorted(list(a,b,c))) |
s454289640 | p02393 | u650790815 | 1495325214 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a,b,c = map(int,input().split())
print(sorted(list(a,b,c))) |
s704516535 | p02393 | u650790815 | 1495500335 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a,b,c = map(int,input().split())
li= sorted(li[0],li[1],li[2])
print(li[0],li[1],li[2]) |
s828745620 | p02393 | u650790815 | 1495703112 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a,b,c = map(int,input().split())
print(' '.join(map(str,sorted(list(a,b,c))))) |
s883566440 | p02393 | u650790815 | 1495703339 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | l = list(input().split())
print(' 'a.join(map(str,sorted(l)))) |
s265040448 | p02393 | u999594662 | 1496124803 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a, b, c = list(map(int, input().split()))
d = a, b, c
print(d.sort()) |
s746732183 | p02393 | u999594662 | 1496125279 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | x = list(map(int, input().split())
x.sort()
print("{0} {1} {2}".format(x[0],x[1],x[2]) |
s516093983 | p02393 | u999594662 | 1496125320 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | x = list(map(int, input().split()))
x.sort()
print("{0} {1} {2}".format(x[0],x[1],x[2]) |
s499269942 | p02393 | u675844759 | 1496799728 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a = [int(i) for i in intput().split()]
" ".join(map(str,a.sort())) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.