https://www.acmicpc.net/problem/1427
using System;
using System.IO;
namespace B1427
{
class Program
{
static void Main()
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
string input = sr.ReadLine();
List<char> list = new List<char>(); ;
for(int i=0; i < input.Length; i++)
{
list.Add(input[i]);
}
list = list.OrderByDescending(x=>x).ToList();
string result = new string(list.ToArray());
sw.Write(result);
sr.Close();
sw.Flush();
sw.Close();
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C# ] 1789 수들의 합 (0) | 2023.11.06 |
---|---|
[ BOJ/C# ] 16435 스네이크버드, 골드 (0) | 2023.11.05 |
[ BOJ/C# ] 15829 Hashing (1) | 2023.11.03 |
[ BOJ/C# ] 1110 더하기 사이클 (1) | 2023.11.02 |
[ BOJ/C# ] 12789 도키도키 간식드리미 (0) | 2023.11.01 |