백준

백준 1427번: 소트인사이드

https://www.acmicpc.net/problem/1427

 

1427번: 소트인사이드

첫째 줄에 정렬하려고 하는 수 N이 주어진다. N은 1,000,000,000보다 작거나 같은 자연수이다.

www.acmicpc.net

1
2
3
4
5
6
7
8
9
10
11
12
13
14
=list(input())
 
for i in range(len(n)):
    max = i
    for j in range(i+1,len(n)):
        if n[max]<n[j]:
            max = j
    if n[i] < n[max]:
        temp = n[i]
        n[i] = n[max]
        n[max] = temp
for i in range(len(n)):
    print(n[i],end="")
 
cs

'백준' 카테고리의 다른 글

백준 13023번: ABCDE  (0) 2023.02.09
백준 11004번: K번째 수  (0) 2023.02.06
백준 1377번: 버블 소트  (0) 2023.02.04
백준 2750번: 수 정렬하기  (1) 2023.02.04
백준 11286번: 절댓값 힙  (0) 2023.02.04