using System;
class Program
{
static void Main(string[] args)
{
string stringNumber = Console.ReadLine();
int totalNumber = System.Convert.ToInt32(stringNumber);
string stringValues = Console.ReadLine();
string[] stringValuesArray = stringValues.Split(' ', StringSplitOptions.None);
int[] values = new int[stringValuesArray.Length];
for (int i = 0; i < stringValuesArray.Length; i++)
{
values[i] = System.Convert.ToInt32(stringValuesArray[i]);
}
string stringMatch = Console.ReadLine();
int match = System.Convert.ToInt32(stringMatch);
int totalCount = 0;
for (int i = 0; i < totalNumber; i++)
{
if (values[i] == match)
{
totalCount++;
}
}
Console.WriteLine(totalCount);
}
}
문제 출처
https://www.acmicpc.net/problem/10807
'ComputerScience > Coding Test' 카테고리의 다른 글
백준 8958번: OX퀴즈 (0) | 2022.11.10 |
---|---|
백준 1546번: 평균 (0) | 2022.11.10 |
백준 5597번: 과제 안 내신 분..? (0) | 2022.11.10 |
백준 25304번: 영수증 (0) | 2022.11.10 |
백준 3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2022.11.09 |