https://www.acmicpc.net/problem/1427
1. char 배열을 구함
2. sort 정렬 후 역순으로 출력
package solution;
import java.util.Arrays;
import java.util.Scanner;
public class Bakjun_1427{
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
String N = sc.nextLine();
char[] a= new char[N.length()];
for(int i=0;i<a.length;i++) {
a[i]=N.charAt(i);
}
Arrays.sort(a);
for(int i=a.length-1;i>-1;i--) {
System.out.print(a[i]);
}
sc.close();
}
}
'IT_tech > 알고리즘' 카테고리의 다른 글
백준2480 ) 주사위3개 JAVA (0) | 2022.08.21 |
---|---|
백준)오븐시계 - 자바 (0) | 2022.08.19 |
백준) 2751 수정렬하기 2 -JAVA (0) | 2020.08.05 |
백준) 2750 수정렬하기 - JAVA (0) | 2020.08.04 |
백준) 1436 영화감독 숌 - JAVA (0) | 2020.08.03 |