Note
[codeup] 99. 이상한 출석 번호 부르기1 본문
728x90
n = int(input())
a = list(map(int, input().split()))
ans = []
for i in range(24):
ans.append(0)
for i in range(n):
ans[a[i]] += 1
for i in range(1,24):
print(ans[i],end=' ')
'etc > Coding Test' 카테고리의 다른 글
[codeup] 101. 이상한 출석 번호 부르기3 (0) | 2021.12.31 |
---|---|
[codeup] 100. 이상한 출석 번호 부르기2 (0) | 2021.12.30 |
[codeup] 98. 함께 문제 푸는 날 (0) | 2021.12.28 |
[codeup] 97. 수 나열하기3 (0) | 2021.12.27 |
[codeup] 96. 수 나열하기2 (0) | 2021.12.26 |
Comments