728x90
https://www.acmicpc.net/problem/2947
inp = list(map(int, input().split()))
while 1:
if inp == [1, 2, 3, 4, 5]:
break
if inp[0] > inp[1]:
tmp = inp[0]
inp[0] = inp[1]
inp[1] = tmp
for i in inp:
print(i, end = ' ')
print()
if inp[1] > inp[2]:
tmp = inp[1]
inp[1] = inp[2]
inp[2] = tmp
for i in inp:
print(i, end = ' ')
print()
if inp[2] > inp[3]:
tmp = inp[2]
inp[2] = inp[3]
inp[3] = tmp
for i in inp:
print(i, end = ' ')
print()
if inp[3] > inp[4]:
tmp = inp[3]
inp[3] = inp[4]
inp[4] = tmp
for i in inp:
print(i, end = ' ')
print()
반응형
'전.py' 카테고리의 다른 글
백준 2846 오르막길 (0) | 2020.12.11 |
---|---|
백준 2857 FBI (0) | 2020.12.11 |
백준 2966 찍기 (0) | 2020.12.11 |
백준 3004 체스판 조각 (0) | 2020.12.11 |
백준 3035 스캐너 (0) | 2020.12.11 |