teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1093)

2019-06-22
teddy8

문제

URL : https://codeup.kr/problemsetsol.php?psid=23


소스코드

// 이상한 출석 번호 부르기1
// input  : 10
//          1 3 2 2 5 6 7 4 5 9
// output : 1 2 1 1 2 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 
// 설명 : 출석 번호를 n번 무작위로 불렀을 때, 
//        각 번호(1 ~ 23)가 불린 횟수를 각각 출력

#include <iostream>

using namespace std;

int main()
{
	int n, count[23] = { 0 };

	cin >> n;

	for (int i = 0, inputNum; i < n; i++)
	{
		cin >> inputNum;
		count[inputNum - 1]++;
	}

	for (int i = 0; i < 23; i++)
		cout << count[i] << " ";

	return 0;
}


Comments

Content