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
s078471599
p02393
u498462680
1546225837
Python
Python3
py
Runtime Error
0
0
103
InData=input().split Indata = map(int, InData) sorted = sort(InData) print(' '.join(map(str, sorted)))
s781159924
p02393
u498462680
1546226465
Python
Python3
py
Runtime Error
0
0
105
InData=input().split Indata = map(int, InData) sorted = sorted(InData) print(' '.join(map(str, sorted)))
s672095338
p02393
u552594238
1546239141
Python
Python3
py
Runtime Error
0
0
123
a=input() b=a.split() c=list() for d in b: c.append(int(d)) d=sorted(c) print(d[0],d[1],d[2])
s553269499
p02393
u733357255
1551348663
Python
Python3
py
Runtime Error
0
0
225
def swap(a,b): x = a a = b b = x ''' l = input().split() l = list(map(int, l)) a,b,c = l[0],l[1],l[2] ''' a,b,c = map(int, input().split) if a > b: a,b = b,a if b > c: b,c = c,b if a > b: a,b = b,a print(a,b,c)
s799995552
p02393
u733357255
1551348677
Python
Python3
py
Runtime Error
0
0
188
''' l = input().split() l = list(map(int, l)) a,b,c = l[0],l[1],l[2] ''' a,b,c = map(int, input().split) if a > b: a,b = b,a if b > c: b,c = c,b if a > b: a,b = b,a print(a,b,c)
s716971126
p02393
u870970010
1555691463
Python
Python
py
Runtime Error
0
0
231
three=input() a=three.split()[0] b=three.split()[1] c=three.split()[2] d=min(a,b) e=max(a,b) if c<d: print("{0} {1} {2}".format(c,d,e)) elif c>e: print("{0} {1} {2}".format(d,e,c)) else print("{0} {1} {2}".format(d,,c,e))
s006467749
p02393
u870970010
1555691566
Python
Python
py
Runtime Error
0
0
232
three=input() a=three.split()[0] b=three.split()[1] c=three.split()[2] d=min(a,b) e=max(a,b) if c<d: print("{0} {1} {2}".format(c,d,e)) elif c>e: print("{0} {1} {2}".format(d,e,c)) else: print("{0} {1} {2}".format(d,c,e))
s536156461
p02393
u870970010
1555691628
Python
Python
py
Runtime Error
0
0
235
three=input() a=three.split()[0] b=three.split()[1] c=three.split()[2] d=min(a,b) e=max(a,b) if c<d: print("{0} {1} {2}".format(c,d,e)) elif c>e: print("{0} {1} {2}".format(d,e,c)) else: print("{0} {1} {2}".format(d,c,e))
s158135381
p02393
u870970010
1555691647
Python
Python
py
Runtime Error
0
0
244
three=input() a=three.split(" ")[0] b=three.split(" ")[1] c=three.split(" ")[2] d=min(a,b) e=max(a,b) if c<d: print("{0} {1} {2}".format(c,d,e)) elif c>e: print("{0} {1} {2}".format(d,e,c)) else: print("{0} {1} {2}".format(d,c,e))
s621224452
p02393
u525395303
1555911167
Python
Python3
py
Runtime Error
0
0
3
ko
s776403010
p02393
u525395303
1555911204
Python
Python3
py
Runtime Error
0
0
2
s
s235740311
p02393
u651717882
1555944255
Python
Python3
py
Runtime Error
0
0
103
a,b,c = input.split() a = int(3) b = int(2) c = int(4) numbers = [a,b,c] numbers.sort() print(numbers)
s323741107
p02393
u654661069
1555979315
Python
Python3
py
Runtime Error
0
0
123
list = sorted(map(int,raw_input().split())) strlist = map(str,list) print strlist[0] + ' ' + strlist[1] + ' ' + strlist[2]
s830220345
p02393
u816538599
1555980689
Python
Python3
py
Runtime Error
0
0
187
a, b, c= map(int, input().split()) if a<=b<=c:print(a, b, c) if b<a<=c:print(b, a, c) if a<=c<=b:print(a, c, b) if b<c<=a:print(b, c, a) if c<a<=b:print(c, a, b) if c<=b<=a:print(c, b, a
s464011329
p02393
u816538599
1555980708
Python
Python3
py
Runtime Error
0
0
187
a, b, c= map(int, input().split()) if a<=b<=c:print(a, b, c) if b<a<=c:print(b, a, c) if a<=c<=b:print(a, c, b) if b<c<=a:print(b, c, a) if c<a<=b:print(c, a, b) if c<=b<=a:print(c, b, a
s134007140
p02393
u108130680
1556078767
Python
Python3
py
Runtime Error
0
0
92
a,b,c = map(int, input().split())  org_list =[a, b, c]  org_list.sort() print(org_list)
s155239746
p02393
u108130680
1556113579
Python
Python3
py
Runtime Error
0
0
89
a,b,c = map(int, input().split()) org_list =[a, b, c]  org_list.sort() print(org_list)
s496756571
p02393
u586792237
1556116455
Python
Python3
py
Runtime Error
0
0
69
p = [x, y, z] x, y, z = map(int, input().split()) p.sort() print(p)
s847469440
p02393
u586792237
1556116497
Python
Python3
py
Runtime Error
0
0
69
p = [x, y, z] x, y, z = map(int, input().split()) p.sort() print(p)
s414255427
p02393
u482227082
1556351441
Python
Python3
py
Runtime Error
0
0
88
array = input().split().sort() for i in range(len(array)): print(array[i], end="")
s404681155
p02393
u482227082
1556351461
Python
Python3
py
Runtime Error
0
0
82
array = input().split().sort() for i in range(0..2): print(array[i], end="")
s134840852
p02393
u482227082
1556351537
Python
Python3
py
Runtime Error
0
0
69
array = input().split().sort() for i in array: print(i, end="")
s261001104
p02393
u482227082
1556352141
Python
Python3
py
Runtime Error
0
0
70
array = input().split().sort()) for i in array: print(i, end="")
s939623185
p02393
u482227082
1556352153
Python
Python3
py
Runtime Error
0
0
69
array = input().split().sort() for i in array: print(i, end="")
s252298023
p02393
u630518143
1556506639
Python
Python3
py
Runtime Error
0
0
236
nums = [int(e) for e in input().split()] for i in range(len(nums)): for j in range(i): if nums[i]<nums[j]: a = nums[i] nums[i] = nums[j] nums[j] = a nums_2 = " ".join(nums) print(nums_2)
s185011667
p02393
u748884386
1556619541
Python
Python3
py
Runtime Error
0
0
48
a=list(map(int,input().split())) print(sort(a))
s508876483
p02393
u610816226
1556624038
Python
Python3
py
Runtime Error
0
0
74
x = [int(x) for x in input().split()] print('{} {} {}'.format(sorted(x)))
s628241543
p02393
u747998458
1556633472
Python
Python3
py
Runtime Error
0
0
307
numbers = list(map(int, input().split())) for i in range(len(numbers)-1): for j in range(len(numbers)-1-i): if(numbers[j] > numbers[j+i]): temp = numbers[j] numbers[j] = numbers[j+1] numbers[j+1] = temp print(f'numbers[0] numbers[1] numbers[2])
s219502235
p02393
u725843728
1556684727
Python
Python3
py
Runtime Error
0
0
61
a,b,c = map(int,input().split()) x = a,b,c x.sort() print(x)
s138925785
p02393
u897466764
1558933703
Python
Python3
py
Runtime Error
0
0
84
#入力 n = int(input()) a = list(map(int,input().split())) a.reverse() print(*a)
s987109054
p02393
u517275798
1558933726
Python
Python3
py
Runtime Error
0
0
153
#a, b, c = map(int, input(). split()) na = list(map(int, input(). split())) #print(dir(ns)) ns. sort() #print(ns[0], ns[1], ns[2]) print(ns) print(*ns)
s721403505
p02393
u477464845
1559052213
Python
Python3
py
Runtime Error
0
0
53
a = list(map(int, input().split()) a.sort print(*a)
s499919042
p02393
u535719732
1559187398
Python
Python3
py
Runtime Error
0
0
206
num = list(map(int,input().split())) list = [] for i in num: if(i == 0): list.append(num[i]) else: if(list[i-1] > num[i]): list.append = list[i] list[i-1] = num[i]
s551485641
p02393
u337885935
1559539622
Python
Python3
py
Runtime Error
0
0
101
a,b,c = map(int,input(),split()) if a>b: a,b=b,a if b>c: c,b=b,c if a>b: a,b=b,a print(a,b,c)
s865340268
p02393
u907094926
1405753807
Python
Python
py
Runtime Error
0
0
104
[a,b,c] = raw_input().split(' ') a = int(a) b = int(b) c = int(c) t = sort([a,b,c]) print t[0],t[1],t[2]
s879783429
p02393
u327972099
1409570830
Python
Python3
py
Runtime Error
0
0
217
for i, a in enumerate(list(map(lambda a : int(a), input().split(" ")))[::-1]):     if i == 0:         print("%d" % a, end ="")     else:         print(" %d"% a, end ="")
s146838445
p02393
u607831289
1415985664
Python
Python
py
Runtime Error
0
0
81
num_list = map(int, raw_input().split()) print ' '.join(map(str, sorted(numlist))
s468758613
p02393
u017764209
1416489562
Python
Python
py
Runtime Error
0
0
260
seq = map(int,raw_input().split()) print "バブルソート実行" for i in range(len(seq)): for j in range(i,len(seq)-1): if seq[i] > seq[j+1]: a = seq[j+1] seq[j+1] = seq[i] seq[i] = a print i,j+1,seq
s661402861
p02393
u481221703
1418863907
Python
Python
py
Runtime Error
0
0
59
lists = list(int, raw_input().split()) print sorted(lists)
s581628890
p02393
u481221703
1418864706
Python
Python
py
Runtime Error
0
0
125
a,b,c = map(int, raw_input().split()) lists = [a,b,c] new_list = sorted(lists) print new_lists[0], new_lists[1], new_lists[2]
s818872093
p02393
u442346200
1422240015
Python
Python3
py
Runtime Error
0
0
76
x = input().split(' ') x = list(map(int, x)).sort() print(x[0], x[1], x[2])
s745882918
p02393
u527848444
1422241314
Python
Python3
py
Runtime Error
0
0
193
i = input().split(' ') W = int(i[0]) H = int(i[1]) x = int(i[2]) y = int(i[3]) r = int(i[4]) if x - r >= 0 and y - r >= 0 and x + r <= W and y + r <= H: print("Yes") else: print("No")
s828805498
p02393
u527848444
1422241379
Python
Python3
py
Runtime Error
0
0
193
i = input().split(' ') W = int(i[0]) H = int(i[1]) x = int(i[2]) y = int(i[3]) r = int(i[4]) if x - r >= 0 and y - r >= 0 and x + r <= W and y + r <= H: print('Yes') else: print('No')
s985060311
p02393
u823030818
1422327672
Python
Python3
py
Runtime Error
0
0
275
(a, b, c) = input().rstrip.split(' ') a = int(a) b = int(b) c = int(c) if a < b < c: print(a, b, c) elif a < c < b: print(a, c, b) elif b <= a <= c: print(b, a, c) elif b <= c <= a: print(b, c, a) elif c <= a <= b: print(c, a, b) else: print(c, b, a)
s295016177
p02393
u823030818
1422327742
Python
Python3
py
Runtime Error
0
0
275
(a, b, c) = input().rstrip.split(' ') a = int(a) b = int(b) c = int(c) if a < b < c: print(a, b, c) elif a < c < b: print(a, c, b) elif b <= a <= c: print(b, a, c) elif b <= c <= a: print(b, c, a) elif c <= a <= b: print(c, a, b) else: print(c, b, a)
s986447592
p02393
u823030818
1422327782
Python
Python3
py
Runtime Error
0
0
287
(a, b, c) = input().rstrip.split(' ') a = int(a) b = int(b) c = int(c) if a < b < c: print('a, b, c') elif a < c < b: print('a, c, b') elif b <= a <= c: print('b, a, c') elif b <= c <= a: print('b, c, a') elif c <= a <= b: print('c, a, b') else: print('c, b, a')
s725308591
p02393
u777299405
1423116512
Python
Python3
py
Runtime Error
0
0
35
print(*sorted(map(int, i.split())))
s265303423
p02393
u492556875
1424448090
Python
Python3
py
Runtime Error
0
0
89
import sys l = [int(i) for i in sys.stdin.readline().split()] l.sort() print(" ".join(l))
s842919342
p02393
u088816384
1424990793
Python
Python3
py
Runtime Error
0
0
120
a,b,c = map(int, raw_input().split()) value = [a,b,c] value.sort() value_str = map(str, value) print " ".join(value_str)
s502272097
p02393
u166912986
1427269474
Python
Python
py
Runtime Error
0
0
305
n=map(int,raw_input().split()) if n[0]=<n[1]=<n[2]: a=n[0] b=n[1] c=n[2] elif n[0]=<n[2]=<n[1]: a=n[0] b=n[2] c=n[1] elif n[1]=<n[0]=<n[2]: a=n[1] b=n[0] c=n[2] elif n[1]=<n[2]=<n[0]: a=n[1] b=n[2] c=n[0] elif n[2]=<n[0]=<n[1]: a=n[2] b=n[0] c=n[1] else: a=n[2] b=n[1] c=n[0] print a,b,c
s642459067
p02393
u128811851
1428899387
Python
Python3
py
Runtime Error
0
0
413
a, b, c = map(int, input().split()) if a <= b: if b <= c: print("{0} {1} {2}".format(a, b, c)) else if c <= a: print("{0} {1} {2}".format(c, a, b)) else: print("{0} {1} {2}".format(a, c, b)) else: if a <= c: print("{0} {1} {2}".format(b, a, c)) else if c <= b: print("{0} {1} {2}".format(c, b, a)) else: print("{0} {1} {2}".format(b, c, a))
s157402063
p02393
u128811851
1428899451
Python
Python3
py
Runtime Error
0
0
413
a, b, c = map(int, input().split()) if a <= b: if b <= c: print("{0} {1} {2}".format(a, b, c)) else if c <= a: print("{0} {1} {2}".format(c, a, b)) else: print("{0} {1} {2}".format(a, c, b)) else: if a <= c: print("{0} {1} {2}".format(b, a, c)) else if c <= b: print("{0} {1} {2}".format(c, b, a)) else: print("{0} {1} {2}".format(b, c, a))
s183769921
p02393
u128811851
1428899490
Python
Python3
py
Runtime Error
0
0
413
a, b, c = map(int, input().split()) if a <= b: if b <= c: print("{0} {1} {2}".format(a, b, c)) else if c <= a: print("{0} {1} {2}".format(c, a, b)) else: print("{0} {1} {2}".format(a, c, b)) else: if a <= c: print("{0} {1} {2}".format(b, a, c)) else if c <= b: print("{0} {1} {2}".format(c, b, a)) else: print("{0} {1} {2}".format(b, c, a))
s934190042
p02393
u128811851
1428899545
Python
Python3
py
Runtime Error
0
0
414
a, b, c = map(int, input().split()) if a <= b: if b <= c: print("{0} {1} {2}".format(a, b, c)) else if c <= a: print("{0} {1} {2}".format(c, a, b)) else: print("{0} {1} {2}".format(a, c, b)) else: if a <= c: print("{0} {1} {2}".format(b, a, c)) else if c <= b: print("{0} {1} {2}".format(c, b, a)) else: print("{0} {1} {2}".format(b, c, a))
s335569295
p02393
u669360983
1430025470
Python
Python3
py
Runtime Error
0
0
150
a,b,c=map(int, input().split(" ")) if a>c : k=c c=a a=k if c<b : k=b b=c c=k if b<a k=b b=a a=k a,b,c=map(str,(a,b,c)) print(a+' '+b+' '+c)
s425806091
p02393
u436720733
1432109029
Python
Python3
py
Runtime Error
0
0
375
a, b, c = map(int, input().split()) if a <= b <= c: print("{} {} {}", format(a, b, c)) elif a <= c <= b: print("{} {} {}", format(a, c, b)) elif b <= a <= c: print("{} {} {}", format(b, a, c)) elif b <= c <= a: print("{} {} {}", format(b, c, a)) elif c <= a <= b: print("{} {} {}", format(c, a, b)) elif c <= b <= a: print("{} {} {}", format(c, b, a))
s664296771
p02393
u172616925
1434949523
Python
Python
py
Runtime Error
0
0
291
a,b,c = map(int, raw_input().split()) if a < b: if c < a: print(%d,%d,%d) % c,a,b elif b < c: print(%d,%d,%d) % a,b,c else: print(%d,%d,%d) % a,c,b else: if c < b: print(%d,%d,%d) % c,b,a elif a < c: print(%d,%d,%d) % b,a,c else: print(%d,%d,%d) % b,c,a
s108563289
p02393
u442346200
1436150811
Python
Python3
py
Runtime Error
0
0
72
nums = int(input().split()) nums.sort() print(nums[0], nums[1], nums[2])
s563888121
p02393
u713218261
1436151053
Python
Python3
py
Runtime Error
0
0
89
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) sorted(a, b, c)
s493268240
p02393
u389610071
1436151216
Python
Python3
py
Runtime Error
0
0
95
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) print(sort(a, b, c))
s710881085
p02393
u389610071
1436151315
Python
Python3
py
Runtime Error
0
0
101
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) S = sort(a, b, c) print(S)
s162243163
p02393
u978086225
1436152231
Python
Python3
py
Runtime Error
0
0
106
nums = input(),split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a, b, c)
s581303780
p02393
u978086225
1436152543
Python
Python3
py
Runtime Error
0
0
214
nums = input(),split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a, b, c) elif a =< b=< c: print(a, b, c) elif a > b > c: print(a, b, c) elif a >= b => c: print(a, b, c)
s690012947
p02393
u978086225
1436153161
Python
Python3
py
Runtime Error
0
0
281
nums = input(),split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a <= b <= c: print(a, b, c) elif a <= c <= b: print(a, c, b) elif b <= a <= c: print(b, a, c) elif b <= c <= a: print(b, c, a) elif c <= a <= b: print(c, a, b) else: print(c, b, a)
s065315179
p02393
u605525736
1436155619
Python
Python3
py
Runtime Error
0
0
278
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a <= b <= c : print('a,b,c) elif a <= c <= b print('a,c,b) elif b <= a <= c: print('b,a,c') elif b <= c <= a: print('b,c,a) elif c <= a <= b: print('c,a,b') else: print('c,b,a)
s319600332
p02393
u484576700
1436450216
Python
Python
py
Runtime Error
0
0
51
n = (int, raw_input().split()) n = n.sort() print n
s125699819
p02393
u484576700
1436450241
Python
Python
py
Runtime Error
0
0
51
n = (int, raw_input().split()) x = n.sort() print x
s702342964
p02393
u484576700
1436450331
Python
Python
py
Runtime Error
0
0
49
n = (int, raw_input().split) x = n.sort() print x
s496114411
p02393
u484576700
1436450394
Python
Python
py
Runtime Error
0
0
65
a,b,c = (int, raw_input().split) n = [a,b,c] x = n.sort() print n
s627418667
p02393
u484576700
1436450410
Python
Python
py
Runtime Error
0
0
67
a,b,c = (int, raw_input().split()) n = [a,b,c] x = n.sort() print n
s370166099
p02393
u484576700
1436450467
Python
Python
py
Runtime Error
0
0
67
a,b,c = (int, raw_input().split()) n = [a,b,c] x = n.sort() print x
s320860204
p02393
u484576700
1436450563
Python
Python
py
Runtime Error
0
0
84
a,b,c = (int, raw_input().split()) n = [a,b,c] x = n.sort() for i in x: print i,
s884615789
p02393
u484576700
1436450776
Python
Python
py
Runtime Error
0
0
87
a,b,c = map(int, raw_input().split()) n = [a,b,c] x = n.sort() for i in x: print i,
s903389270
p02393
u484576700
1436451172
Python
Python
py
Runtime Error
0
0
87
a,b,c = map(int, raw_input().split()) n = [a,b,c] x = n.sort() for i in x: print i,
s903519571
p02393
u255164080
1437965378
Python
Python3
py
Runtime Error
0
0
153
nums = input().sprit() (W, H, x, y, r) = [int(i) for i in input().split()] if r <= x <= W - r and r <= y <= H - r: print("Yes") else: print("No")
s765554909
p02393
u255164080
1437965798
Python
Python3
py
Runtime Error
0
0
154
import sys (W, H, x, y, r) = [int(i) for i in sys.stdin.readline().split()] if r <= x <= W - r and r <= y <= H - r: print("Yes") else: print("No")
s033827372
p02393
u255164080
1437966156
Python
Python3
py
Runtime Error
0
0
85
nums = input().split() nums = [int(i) for i in input().split()] nums.sort print(nums)
s348677567
p02393
u255164080
1437967211
Python
Python3
py
Runtime Error
0
0
50
nums = int( input().split()) nums.sort print(nums)
s668112028
p02393
u255164080
1437967516
Python
Python3
py
Runtime Error
0
0
74
nums = [int(i) for i in input().split()] nums.sort print( %d %d %d % nums)
s130935188
p02393
u255164080
1437968027
Python
Python3
py
Runtime Error
0
0
147
if a > b: tmp = a a = b b = tmp if b > c: tmp = b b = c c = tmp if a > b: tmp = a a = b b = tmp pritn(a, b, c)
s686434192
p02393
u255164080
1437968117
Python
Python3
py
Runtime Error
0
0
222
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a > b: tmp = a a = b b = tmp if b > c: tmp = b b = c c = tmp if a > b: tmp = a a = b b = tmp pritn(a, b, c)
s759536063
p02393
u152353734
1439750034
Python
Python3
py
Runtime Error
0
0
305
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a <= b <= c: ????????print(a, b, c) elif a <= c <= b: ????????print(a, c, b) elif b <= a <= c: ????????print(b, a, c) elif b <= c <= a: ????????print(b, c, a) elif c <= a <= b: ????????print(c, a, b) else: ????????print(c, b, a)
s152619704
p02393
u676498528
1439832880
Python
Python3
py
Runtime Error
0
0
174
nums = input().split() a = int(num[0]) b = int(num[1]) c = int(num[2]) if a > b: tmp = a a = b b = tmp if b > c: tmp = b b = c c = tmp print(a, b, c)
s549592969
p02393
u676498528
1439832981
Python
Python3
py
Runtime Error
0
0
218
nums = input().split() a = int(num[0]) b = int(num[1]) c = int(num[2]) if a > b: tmp = a a = b b = tmp if b > c: tmp = b b = c c = tmp if a > b: tmp = a a = b b = tmp print(a, b, c)
s594254994
p02393
u572760146
1442757989
Python
Python
py
Runtime Error
0
0
237
S = input() L = S.split() a = L[0] b = L[1] c = L[2] a = int(a) b = int(b) c = int(c) l = [a,b,c] min_1 = min(a,b,c) # print l.remove(min_1) l.remove(min_1) min_2 = min(l) l.remove(min_2) min_3 = l[0] print min_1 , min_2, min_3
s666489146
p02393
u572760146
1442758028
Python
Python
py
Runtime Error
0
0
237
S = input() L = S.split() a = L[0] b = L[1] c = L[2] a = int(a) b = int(b) c = int(c) l = [a,b,c] min_1 = min(a,b,c) # print l.remove(min_1) l.remove(min_1) min_2 = min(l) l.remove(min_2) min_3 = l[0] print min_1 , min_2, min_3
s591444029
p02393
u572760146
1442758601
Python
Python
py
Runtime Error
0
0
301
S = input() L = S.split() a = L[0] b = L[1] c = L[2] a = int(a) b = int(b) c = int(c) l = [a,b,c] min_1 = min(a,b,c) # print l.remove(min_1) l.remove(min_1) min_2 = min(l) l.remove(min_2) min_3 = l[0] min_1 = str(min_1) min_2 = str(min_2) min_3 = str(min_3) print min_1+' '+min_2+' '+min_3
s369853033
p02393
u572760146
1442759121
Python
Python
py
Runtime Error
0
0
301
S = input() L = S.split() a = L[0] b = L[1] c = L[2] a = int(a) b = int(b) c = int(c) l = [a,b,c] min_1 = min(a,b,c) # print l.remove(min_1) l.remove(min_1) min_2 = min(l) l.remove(min_2) min_3 = l[0] min_1 = str(min_1) min_2 = str(min_2) min_3 = str(min_3) print min_3+' '+min_2+' '+min_1
s676971038
p02393
u627893595
1443594091
Python
Python3
py
Runtime Error
0
0
77
num = list(map(int, input().split())) num.sort() print(num[0], num[1], num[2]
s454643077
p02393
u224288634
1444128512
Python
Python
py
Runtime Error
0
0
95
list = map(int,raw_input().split()) ilst.sort() print'%d %d %d' %(list[0],list[1],list[2])
s449749047
p02393
u224288634
1444128648
Python
Python
py
Runtime Error
0
0
96
list = map(int,raw_input().split()) ilst.sort() print'%d %d %d' % (list[0],list[1],list[2])
s842242783
p02393
u224288634
1444128719
Python
Python
py
Runtime Error
0
0
77
list = map(int,raw_input().split()) ilst.sort() for i in list : print(i)
s009736600
p02393
u224288634
1444128851
Python
Python
py
Runtime Error
0
0
91
a,b,c = map(int,raw_input().split()) list = [a,b,c] ilst.sort() for i in list : print i
s531033312
p02393
u139034459
1445707039
Python
Python
py
Runtime Error
0
0
328
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() var = map(int, var) if var[0] > var[1] tmp = var[0] var[0] = var[1] var[1] = tmp if var[0] > var[2] tmp = var[0] var[0] = var[2] var[2] = tmp if var[1] > var[2] tmp = var[1] var[1] = var[2] var[2] = tmp var = map(str, var) prini " ".join(var)
s843127998
p02393
u139034459
1445707112
Python
Python
py
Runtime Error
0
0
335
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() var = map(int, var) if var[0] > var[1] tmp = var[0] var[0] = var[1] var[1] = tmp if var[0] > var[2] tmp = var[0] var[0] = var[2] var[2] = tmp if var[1] > var[2] tmp = var[1] var[1] = var[2] var[2] = tmp var = map(str, var) prini var[0],var[1],var[2]
s111363239
p02393
u139034459
1445707163
Python
Python
py
Runtime Error
0
0
338
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() var = map(int, var) if var[0] > var[1]: tmp = var[0] var[0] = var[1] var[1] = tmp if var[0] > var[2]: tmp = var[0] var[0] = var[2] var[2] = tmp if var[1] > var[2]: tmp = var[1] var[1] = var[2] var[2] = tmp var = map(str, var) prini var[0],var[1],var[2]
s271586486
p02393
u139034459
1445707228
Python
Python
py
Runtime Error
0
0
321
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() var = map(int, var) if var[0] > var[1]: tmp = var[0] var[0] = var[1] var[1] = tmp if var[0] > var[2]: tmp = var[0] var[0] = var[2] var[2] = tmp if var[1] > var[2]: tmp = var[1] var[1] = var[2] var[2] = tmp prini var[0],var[1],var[2]
s350088113
p02393
u532962080
1452586581
Python
Python
py
Runtime Error
0
0
322
a,b,c=map(int,raw_input().split()) if a<=b and b<=c: print a + ' ' + b + ' ' + c if a<=c and c<=b: print a + ' ' + c + ' ' + b if b<=a and a<=c: print b + ' ' + a + ' ' + c if b<=c and c<=a: print b + ' ' + c + ' ' + a if c<=b and b<=a: print c + ' ' + b + ' ' + a if c<=a and a<=b: print c + ' ' + a + ' ' + b
s152817591
p02393
u532962080
1452586650
Python
Python
py
Runtime Error
0
0
332
a,b,c=map(int,raw_input().split()) if a<=b and b<=c: print a + ' ' + b + ' ' + c elif a<=c and c<=b: print a + ' ' + c + ' ' + b elif b<=a and a<=c: print b + ' ' + a + ' ' + c elif b<=c and c<=a: print b + ' ' + c + ' ' + a elif c<=b and b<=a: print c + ' ' + b + ' ' + a elif c<=a and a<=b: print c + ' ' + a + ' ' + b
s536124071
p02393
u532962080
1452587191
Python
Python
py
Runtime Error
0
0
839
a,b,c=map(int,raw_input().split()b if a<b and b<c: print str(a) + ' ' + str(b) + ' ' + str(c) elif a<c and c<b: print str(a) + ' ' + str(c) + ' ' + str(b) elif b<a and a<c: print str(b) + ' ' + str(a) + ' ' + str(c) elif b<c and c<a: print str(b) + ' ' + str(c) + ' ' + str(a) elif c<b and b<a: print str(c) + ' ' + str(b) + ' ' + str(a) elif c<a and a<b: print str(c) + ' ' + str(a) + ' ' + str(b) elif a==b and a<c print str(a) + ' ' + str(b) + ' ' + str(c) elif a==b and a>c print str(c) + ' ' + str(a) + ' ' + str(b) elif a==c and a<b print str(a) + ' ' + str(c) + ' ' + str(c) elif a==c and a>b print str(b) + ' ' + str(a) + ' ' + str(c) elif b==c and a<c print str(a) + ' ' + str(b) + ' ' + str(c) elif b==c and a>c print str(b) + ' ' + str(c) + ' ' + str(a) else: print str(a) + ' ' + str(b) + ' ' + str(c)