[BOJ] 1159 농구 경기
Algorithm 2023. 1. 20. 01:05반응형
https://www.acmicpc.net/problem/1159
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace _1159
{
class Program
{
static void Main()
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
//StringBuilder sb = new StringBuilder();
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
int n = int.Parse(sr.ReadLine());
int[] arr = new int[26];
for (int i = 0; i < n; i++)
{
var name = sr.ReadLine();
//Console.WriteLine(name[0] - 'a');
arr[name[0] - 'a']++;
}
List<int> list = new List<int>();
for (int i = 0; i<26; i++)
{
if (arr[i] >= 5)
{
//sw.WriteLine(i + 'a');
list.Add(i + 'a');
}
}
if (list.Count == 0)
{
sw.WriteLine("PREDAJA");
}
else
{
list.Sort();
foreach (var ele in list)
{
Console.Write((char)ele);
}
}
sr.Close();
sw.Close();
}
}
}
반응형
'Algorithm' 카테고리의 다른 글
[BOJ] 1940 주몽 (0) | 2023.01.20 |
---|---|
[BOJ] 1254 팰린드롬 만들기 (0) | 2023.01.20 |
[BOJ] 1764 듣보잡 (0) | 2023.01.20 |
[BOJ] 1251 단어 나누기 (0) | 2023.01.20 |
[프로그래머스] 옹알이 (1) (0) | 2023.01.19 |