[BOJ] 1181 단어정렬

Algorithm 2023. 1. 12. 19:38
반응형
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _1181
{
    class Program
    {
        static void Main(string[] args)
        {
            using (var stream = new StreamWriter(Console.OpenStandardOutput()))
            {
                int n = Convert.ToInt32(Console.ReadLine());
                List<string> list = new List<string>();
                for (int i = 0; i < n; i++)
                    list.Add(Console.ReadLine());
                var sequence = list.OrderBy(x => x.Length).ThenBy(x => x).Distinct();
                foreach (string w in sequence)
                    stream.WriteLine(w);
            }
            
        }
    }
}
반응형

'Algorithm' 카테고리의 다른 글

[BOJ] C# 2309 일곱 난쟁이  (0) 2023.01.13
[BOJ] C# 10173 니모를 찾아서  (0) 2023.01.12
[BOJ] 9012 괄호  (0) 2023.01.11
[BOJ] C# 7576 토마토  (0) 2022.12.28
알고리즘 문제 사이트 및 강의  (0) 2021.07.29
: