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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s603884990 | p02393 | u865281338 | 1511011028 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | def narabekae()
list = [int(i) for i in input().split()]
list.reverse()
print list
if __name__= '__main__' :
narabikae() |
s719880645 | p02393 | u865281338 | 1511011243 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | def narabekae() :
list = [int(i) for i in input().split()]
list.reverse()
print list
if __name__== '__main__' :
narabikae() |
s817780409 | p02393 | u865281338 | 1511012569 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | def narabekae() :
a, b, c = [int(i) for i in input().split()]
print(max(a,b,c) median(a,b,c) min(a,b,c))
if __name__== '__main__' :
narabikae() |
s212006343 | p02393 | u865281338 | 1511012651 | Python | Python3 | py | Runtime Error | 0 | 0 | 173 | def narabekae???() :
a, b, c = [int(i) for i in input().split()]
print???(max(a,b,c) median(a,b,c) min(a,b,c))
if __name__=='__main__':
narabikae() |
s491779590 | p02393 | u865281338 | 1511012876 | Python | Python3 | py | Runtime Error | 0 | 0 | 173 | def narabekae???() :
a, b, c = [int(i) for i in input().split()]
print???(max(a,b,c) median(a,b,c) min(a,b,c))
if __name__=='__main__':
narabikae() |
s031308008 | p02393 | u889593139 | 1512101948 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = map(int, input().split(' '))
sorted_a = sort(a)
print(a[0], a[1], a[2]) |
s412176634 | p02393 | u150984829 | 1513048998 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | map(int,input().split()).sort() |
s216043047 | p02393 | u150984829 | 1513111154 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | print(sort(map(int,input().split()))) |
s567190897 | p02393 | u830563109 | 1513852888 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b,c = int(input())
abc = [a,b,c]
abc.sort()
a |
s409433784 | p02393 | u830563109 | 1513853056 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = input()
b = input()
c = input()
abc = [a,b,c]
abc.sort()
print(abc) |
s733026697 | p02393 | u841567836 | 1515170139 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | if __name__ == '__main__':
a, b, c = input().split()
a, b, c = int(a), int(b), int(c)
ans = [a, b, c].sorted()
print(ans[0], ans[1], ans[2])
|
s609521755 | p02393 | u303842929 | 1515548347 | Python | Python3 | py | Runtime Error | 0 | 0 | 343 | n = input().split()
num = [0 for i in range(len(n))]
for i in range(len(n)):
num[i] = int(n[i])
for i in reversed(range(len(num))):
for j in range(i):
¦ if num[j] > num[j + 1]:
¦ ¦ tmp = num[j]
¦ ¦ num[j] = num[j + 1]
¦ ¦ num[j + 1] = tmp
for i in range(len(n)):
print(str(num[i]),end=" ")
|
s548280407 | p02393 | u179070318 | 1515919533 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a = [int(x) for x in input().split( )]
a.sort()
print(a[0] a[1] a[2])
|
s983292330 | p02393 | u179070318 | 1515919700 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = [int(x) for x in input().split( )]
a.sort()
print(' ',join(map(str,a)))
|
s171518153 | p02393 | u299257375 | 1516009386 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | num_sorted = list(map(int, input().split()))
print("{} {} {}".format(num_sorted.sort()[0], num_sorted.sort()[1], num_sorted.sort()[2]))
|
s410888262 | p02393 | u639135641 | 1516529139 | Python | Python3 | py | Runtime Error | 0 | 0 | 366 | #Branch on Condition - Sorting Three Numbers
num=list(map(int,input().split()))
bubble_sort(num)
print(num)
def bubble_sort(arr):
change = True
while change:
change = False
for i in range(len(arr) - 1):
if arr[i] > arr[i + 1]:
arr[i], arr[i + 1] = arr[i + 1], arr[i]
change = True
return arr
|
s208747482 | p02393 | u639135641 | 1516530765 | Python | Python3 | py | Runtime Error | 0 | 0 | 383 | #Branch on Condition - Sorting Three Numbers
num=list(map(int,input().split()))
bubble_sort(num)
print(num[0],num[1],num[2])
def bubble_sort(arr):
change = True
while change:
change = False
for i in range(len(arr) - 1):
if arr[i] > arr[i + 1]:
arr[i], arr[i + 1] = arr[i + 1], arr[i]
change = True
return arr
|
s188999034 | p02393 | u639135641 | 1516530779 | Python | Python3 | py | Runtime Error | 0 | 0 | 383 | #Branch on Condition - Sorting Three Numbers
num=list(map(int,input().split()))
bubble_sort(num)
print(num[0],num[1],num[2])
def bubble_sort(arr):
change = True
while change:
change = False
for i in range(len(arr) - 1):
if arr[i] > arr[i + 1]:
arr[i], arr[i + 1] = arr[i + 1], arr[i]
change = True
return arr
|
s916045667 | p02393 | u536089081 | 1517522926 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | num = map(int, input().split(' '))
num.sort()
print(' '.join(map(int, num)))
|
s464700171 | p02393 | u536089081 | 1517523210 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | num = list(map(int, input().split(' ')))
num.sort()
print(' '.join(map(int, num)))
|
s801095658 | p02393 | u798565376 | 1517682042 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | l = list(map(int, input().split()))
sorted_list = l.sorted()
print('{} {} {}'.format(l[0], l[1], l[2])
|
s851139296 | p02393 | u798565376 | 1517682057 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | l = list(map(int, input().split()))
sorted_list = sorted(l)
print('{} {} {}'.format(l[0], l[1], l[2])
|
s746494179 | p02393 | u139687801 | 1517682748 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = [int(x) for x in input().split(',')]
a.sort()
print(a)
|
s267364738 | p02393 | u459418423 | 1517889124 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a,b,c = map(int, input().split())
print(' '.join(sorted([a,b,c])))
|
s625766427 | p02393 | u671760895 | 1518537932 | Python | Python | py | Runtime Error | 0 | 0 | 84 | l = map(int, raw_input().split())
l.sort()
print(str(l[0]+' '+strl[1]+' '+str[2])
|
s071117868 | p02393 | u373340964 | 1519107477 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a = map(int, input())
a.sort()
maped_list = map(str, a)
mojiretu = ','.join(maped_list)
print(mojiretu)
|
s068992927 | p02393 | u613534067 | 1520130699 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a = list(map(int, input().split()))
print(*a.sort())
|
s529996790 | p02393 | u613534067 | 1520130948 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a = list(map(int, input().split()))
print(*i) for i in a.sort()
|
s980569282 | p02393 | u613534067 | 1520130964 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a = list(map(int, input().split()))
[print(*i) for i in a.sort()]
|
s326283920 | p02393 | u005739171 | 1520174608 | Python | Python3 | py | Runtime Error | 0 | 0 | 336 | a, b, c = map(int, input().split())
list1 = [a,b,c]
list2 = sorted(list1)
for i in range(len(list2)):
# lenでリストの要素数を求める, rangeにループ回数(回数分の要素のリストが戻り値), inはリストをとる
print '%d, ' % (list2[i]),
# print文の末尾に「,」を付けると改行しない
|
s799757740 | p02393 | u017435045 | 1520749676 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | ns=list(map(int,input().split()))
ns.sort()
print(ns[0],ns[1],ns[2])
a=list(map(int, input()))
a.sort()
print(a[0],a[1],a[2])
|
s963368577 | p02393 | u017435045 | 1520749682 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 |
a=list(map(int, input()))
a.sort()
print(a[0],a[1],a[2])
|
s663632018 | p02393 | u017435045 | 1520749694 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 |
a=list(map(int, input()))
a.sort()
print(a[0],a[1],a[2])
|
s826359431 | p02393 | u507758132 | 1521098761 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 | a,b,c = map(int,input().split())
if a < b :
if b < c:
print(a,b,c)
else:
print(a,c,b)
else:
if a < c:
print(b,a,c)
else:
print(b,c,a)
|
s028138705 | p02393 | u566311709 | 1521121651 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | l = map(int, input().split())
l.sorted()
print ','.join(l)
|
s672037828 | p02393 | u566311709 | 1521121736 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | l = list(map(int, input().split()))
l.sort()
print ','.join(l)
|
s351812145 | p02393 | u566311709 | 1521121788 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | l = list(map(int, input().split()))
l.sort()
print ' '.join(l)
|
s585059672 | p02393 | u566311709 | 1521121924 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | l = list(map(int, input().split()))
print ' '.join(map(str, sorted(l)))
|
s210931201 | p02393 | u648117624 | 1521360079 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | #coding: UTF-8
a,b,c=[int(x) for x in input().split()]
numlist = [a,b,c]
numlist.sorted()
print(numlist)
|
s962829909 | p02393 | u706023549 | 1521420909 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | j = list(map(int, input().split()))
def sort():
while i < len(j)-1:
if j[i] > j[i+1]:
j[i], j[i+1] = j[i+1], j[i]
i = i + 1
sort()
sort()
|
s880166070 | p02393 | u621084859 | 1522385406 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | n=input().split()
m=int(n[0])
c=int(n[1])
d=int(n[2])
sorted(m,c,d)
print(m[0],c[1],d[2])
|
s309241213 | p02393 | u621084859 | 1522385590 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | n=input().split()
m=int(n[0])
c=int(n[1])
d=int(n[2])
n.sort()
print(m[0],c[1],d[2])
|
s047814278 | p02393 | u621084859 | 1522385610 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | n=input().split( )
m=int(n[0])
c=int(n[1])
d=int(n[2])
n.sort()
print(m[0],c[1],d[2])
|
s578737399 | p02393 | u782670949 | 1522968297 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | x = map(int, input().split())
x.sort()
print(x, sep = "")
|
s752871159 | p02393 | u782670949 | 1522968426 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | x = map(int, input().split())
x.sort()
print(x)
|
s384479773 | p02393 | u782670949 | 1522968544 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | x = map(int, input().split())
x.sort()
|
s859730260 | p02393 | u782670949 | 1522969270 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | x = list(map(int, input().split())
x.sort()
print(" ".join(map(str, x)
|
s660624620 | p02393 | u782670949 | 1522969418 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | x = list(map(int, input().split())
x.sort()
print(" ".join(map(str, x)))
|
s988927088 | p02393 | u782670949 | 1522969474 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | x = list(map(int, input().split())
print(" ".join(map(str, sorted(x))))
|
s928199147 | p02393 | u695099631 | 1523081166 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | list = raw_input().split(" ")
list.sort()
|
s470397057 | p02393 | u695099631 | 1523081197 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | list = raw_input().split(" ")
list.sort()
print(list)
|
s724181370 | p02393 | u695099631 | 1523081279 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | list = raw_input().split(" ")
list.sort()
print(list)
|
s742469537 | p02393 | u695099631 | 1523081411 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | list = raw_input().split(" ")
list.sort()
print(" ".join(list))
|
s138282876 | p02393 | u781194524 | 1523861099 | Python | Python | py | Runtime Error | 0 | 0 | 246 | a,b,c=[int(x) for x in input().split()]
if a > b:
if a > c:
if b < c:
print(b,c,a,sep=" ")
else:
print(c,b,a,sep=" ")
elif b < c:
print(a,b,c,sep=" ")
else:
print(a,c,b,sep=" ")
|
s096032260 | p02393 | u843169619 | 1523869922 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | list = int(map(int, input().split()))
print(sorted(list)
|
s992946001 | p02393 | u843169619 | 1523869952 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | list = int(map(int, input().split()))
print(sorted(list))
|
s311352359 | p02393 | u843169619 | 1523870142 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | list = int(map(int, input().split()))
uplist = sorted(list)
print(" ".join(map(str,uplist))
|
s862627873 | p02393 | u485986915 | 1524293964 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a,b,c = map(int,input().split())
print(sorted[a,b,c])
|
s717359863 | p02393 | u485986915 | 1524294146 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | a,b,c = map(int,input().split())
x=[a,b,c]
x.sort()
print(x[0]x[1]x[2])
|
s053484309 | p02393 | u485986915 | 1524294236 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a,b,c = map(int,input().split())
x=[a,b,c]
x.sort()
print(x[0])
print(x[1])
Print(x[2])
|
s961357044 | p02393 | u074747865 | 1524472759 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | li=sorted(list(int,input().split()))
print(*li)
|
s137800860 | p02393 | u876060624 | 1524710648 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | nums = list(map((int,input().split())))
nums.sort()
print(list(nums))
|
s410801281 | p02393 | u876060624 | 1524710704 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | nums = list(map((int,input().split())))
nums.sort()
print(nums[0],nums[1],nums[2])
|
s104126734 | p02393 | u781194524 | 1524811647 | Python | Python3 | py | Runtime Error | 0 | 0 | 261 | a,b,c=[int(x) in x for input().split()]
if a<b<c:
print(a,b,c,sep=" ")
elif a<c<b:
print(a,c,b,sep=" ")
elif b<a<c:
print(b,a,c,sep=" ")
elif b<c<a:
print(b,c,a,sep=" ")
elif c<a<b:
print(c,a,b,sep=" ")
elif c<b<a:
print(c,b,a,sep=" ")
|
s369636083 | p02393 | u781194524 | 1524811766 | Python | Python3 | py | Runtime Error | 0 | 0 | 261 | a,b,c=[int(x) in x for input().split()]
if a<b<c:
print(a,b,c,sep=" ")
elif a<c<b:
print(a,c,b,sep=" ")
elif b<a<c:
print(b,a,c,sep=" ")
elif b<c<a:
print(b,c,a,sep=" ")
elif c<a<b:
print(c,a,b,sep=" ")
elif c<b<a:
print(c,b,a,sep=" ")
|
s509108862 | p02393 | u648117624 | 1524988005 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | x, y, z = map(int, input().split())
s = list(x, y, z)
print(sorted(s))
|
s141161704 | p02393 | u648117624 | 1524988512 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import numpy as np
x, y, z = map(int, input().split())
s = [x, y, z]
print(min(s), int(np.median(s)), max(s))
|
s744844073 | p02393 | u648117624 | 1524988625 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | import numpy as np
x, y, z = map(int, input().split())
s = [x, y, z]
print(int(sorted(s))
|
s205952273 | p02393 | u648117624 | 1524988762 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | x, y, z = list(map(int, input().split()))
s = [x, y, z]
print(str(sorted(s))
|
s167752605 | p02393 | u648117624 | 1524988984 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | print(*sorted.map(int, input().split())
|
s363098812 | p02393 | u648117624 | 1524989020 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | print(*sorted.map(int, input().split()))
|
s688176547 | p02393 | u648117624 | 1524989174 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | #print(*sorted(map(int, input().split())))
s = map(int, input().split())
print(s.sort())
|
s105960864 | p02393 | u648117624 | 1524989411 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | #print(*sorted(map(int, input().split())))
print(*.sorted(map(int, input().split())))
|
s022051103 | p02393 | u532590372 | 1525486983 | Python | Python3 | py | Runtime Error | 0 | 0 | 153 | if __name__ == '__main__':
x = input().split(' ')
a = int(x[0])
b = int(x[1])
c = int(x[2])
if a > b and b > c:
print(
|
s573649652 | p02393 | u527389300 | 1526622169 | Python | Python3 | py | Runtime Error | 0 | 0 | 230 | a, b ,c = map(int, input().split())
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(srt(a)+ ' ' +str(b)+ ' ' +str(c)
|
s593511445 | p02393 | u500257793 | 1526984537 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | a,b,c=map(int,input().split())
if(a<b):
w=a;a=b;b=w;
if(b<c):
w=b;b=c;c=w;
if(a<b)
w=a;a=b;b=w;
print(f"{a},{b},{c}");
|
s257984144 | p02393 | u944658202 | 1527825964 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | number=input()
list=number.split()
list.sort()
for x in list:
print x,
|
s589223268 | p02393 | u944658202 | 1527826040 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | number=input()
list=number.split()
list.sort()
print list[0]+list[1]+list[2]
|
s090893299 | p02393 | u420214671 | 1529027235 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b,c=input().split()
a=int(a)
b=int(b)
c=int(c)
sort()
|
s184388996 | p02393 | u420214671 | 1529030024 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b,c=input().split()
a=int(a)
b=int(b)
c=int(c)
sort()
|
s128522998 | p02393 | u119807026 | 1529973871 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | d = input()
a, b, c = map(int, d.split())
e = [a, b, c]
e.sort()
print(e[0] +" " +e[1]+ " " +e[2])
|
s125878749 | p02393 | u119807026 | 1529975569 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a = input()
b = list[map(int, a.split())]
b.sort()
print(b[0]+" " + b[1]+ " " +b[2])
|
s012346004 | p02393 | u119807026 | 1529975664 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a = input()
b = list(map(int, a.split()))
b.sort()
print(b[0]+" " + b[1]+ " " +b[2])
|
s156326685 | p02393 | u917722865 | 1530705576 | Python | Python3 | py | Runtime Error | 0 | 0 | 353 | abc_s = input()
abc_a = abc_s.split(" ")
abc = [int(x) for x in abc_a]
sorted = False
while sorted == False:
sorted = True
if abc[0] > abc[1]:
sorted == False
tmp = abc[0]
abc[0] = abc[1]
abc[1] = tmp
if abc[1] > abc[2]:
sorted == False
tmp = abc[1]
abc[1] = abc[2]
abc[2] = tmp
print("{0} {1} {2}".format(abc))
|
s500618207 | p02393 | u917722865 | 1530705784 | Python | Python3 | py | Runtime Error | 0 | 0 | 374 | abc_s = input()
abc_a = abc_s.split(" ")
abc = [int(x) for x in abc_a]
sorted = False
while sorted == False:
sorted = True
if abc[0] > abc[1]:
sorted == False
tmp = abc[0]
abc[0] = abc[1]
abc[1] = tmp
if abc[1] > abc[2]:
sorted == False
tmp = abc[1]
abc[1] = abc[2]
abc[2] = tmp
print("{array[0]} {array[1]} {array[2]}".format(abc))
|
s055298747 | p02393 | u146816547 | 1385548912 | Python | Python | py | Runtime Error | 0 | 0 | 218 | a, b, c = map(int,raw_input().split())
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 |
s702504195 | p02393 | u146816547 | 1385549075 | Python | Python | py | Runtime Error | 0 | 0 | 184 | a, b, c = map(int,raw_input().split())
if a < b:
a = tmp
a = b
b =tmp
elif b < c:
b = tmp
b = c
c =tmp
elif a < c:
a = tmp
a = c
c = tmp
print a b c |
s106902938 | p02393 | u904989881 | 1391646700 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a = map(int, raw_input().split())
print ' ',join(str, a.sort()) |
s384287578 | p02393 | u904989881 | 1391647068 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a = map(int, raw_input().split())
print ' '.join(sorted(a)) |
s177514123 | p02393 | u633068244 | 1393315183 | Python | Python | py | Runtime Error | 0 | 0 | 277 | a[0],a[1],a[2] = map(int, raw_input().split())
i = 1
while i < 3 :
j = i - 1
while j < 3:
if a[j] > a[j+1]:
t = a[j]
a[j] = a[j+1]
a[j+1] = t
else:
break
j -= 1
i += 1
print a[0],a[1],a[2] |
s327938858 | p02393 | u633068244 | 1393315259 | Python | Python | py | Runtime Error | 0 | 0 | 277 | a[0],a[1],a[2] = map(int, raw_input().split())
i = 1
while i < 3 :
j = i - 1
while j > 0:
if a[j] > a[j+1]:
t = a[j]
a[j] = a[j+1]
a[j+1] = t
else:
break
j -= 1
i += 1
print a[0],a[1],a[2] |
s007189427 | p02393 | u633068244 | 1393315292 | Python | Python | py | Runtime Error | 0 | 0 | 278 | a[0],a[1],a[2] = map(int, raw_input().split())
i = 1
while i < 3 :
j = i - 1
while j >= 0:
if a[j] > a[j+1]:
t = a[j]
a[j] = a[j+1]
a[j+1] = t
else:
break
j -= 1
i += 1
print a[0],a[1],a[2] |
s238509317 | p02393 | u633068244 | 1393315414 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a[0],a[1],a[2] = map(int, raw_input().split())
sorted(a)
print a[0],a[1],a[2] |
s429934095 | p02393 | u633068244 | 1393315443 | Python | Python | py | Runtime Error | 0 | 0 | 69 | a[0],a[1],a[2] = map(int, raw_input().split())
print a[0],a[1],a[2] |
s386864260 | p02393 | u633068244 | 1393315549 | Python | Python | py | Runtime Error | 0 | 0 | 91 | a,b,c = map(int, raw_input().split())
aa = [1, 2, 3]
sorted(aa)
print aa[0],aa[1],aa[2]\n |
s990084070 | p02393 | u633068244 | 1393315648 | Python | Python | py | Runtime Error | 0 | 0 | 104 | a,b,c = map(int, raw_input().split())
aa[0] = a
aa[1] = b
aa[2] = c
sorted(aa)
print aa[0],aa[1],aa[2] |
s497329294 | p02393 | u633068244 | 1393315736 | Python | Python | py | Runtime Error | 0 | 0 | 116 | a,b,c = map(int, raw_input().split())
aa = [,,,]
aa[0] = a
aa[1] = b
aa[2] = c
sorted(aa)
print aa[0],aa[1],aa[2] |
s491958006 | p02393 | u814387366 | 1394523094 | Python | Python | py | Runtime Error | 0 | 0 | 80 | tmp=b
b=c
c=tmp
if(a>b):
tmp=a
a=b
b=tmp
print str(a)+" "+str(b)+" "+str(c) |
s074237643 | p02394 | u944658202 | 1532054996 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | W=int(input())
H=int(input())
x=int(input())
y=int(input())
r=int(input())
if x-r<0||y-r<0||x+r>W||y+r>H :
print("NO")
else:
print("NO")
|
s607480901 | p02394 | u944658202 | 1532055016 | Python | Python3 | py | Runtime Error | 0 | 0 | 152 | W=int(input())
H=int(input())
x=int(input())
y=int(input())
r=int(input())
if x-r<0 or y-r<0 or x+r>W or y+r>H :
print("NO")
else:
print("NO")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.