https://www.acmicpc.net/problem/1159
알파벳의 아스키코드를 이용하였다.
using System;
using System.Text;
namespace _1159
{
class Program
{
static void Main()
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
StringBuilder sb = new StringBuilder();
int n = int.Parse(sr.ReadLine());
int[] alphabets = new int[26];
for(int i = 0; i < n; i++)
{
string str = sr.ReadLine();
int name = str[0] - 97;
alphabets[name]++;
}
for(int i = 0; i < alphabets.Length; i++)
{
if ((int)alphabets.GetValue(i) >= 5) sb.Append((char)(i + 97));
}
if (sb.Length == 0) sb.Append("PREDAJA");
sw.WriteLine(sb);
sr.Close();
sw.Flush();
sw.Close();
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C# ] 21921 블로그 (0) | 2023.08.29 |
---|---|
[ BOJ/C# ] 1940 주몽 (0) | 2023.08.28 |
[ BOJ/C# ] 1764 듣보잡 (0) | 2023.08.26 |
[ BOJ/C# ] 2839 설탕 배달 (0) | 2023.08.26 |
[ BOJ/C# ] 2844 알람 시계 (0) | 2023.08.25 |