-Code
t = 1
while True:
n = int(input())
if n == 0:
break
month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
"Aug", "Sep", "Oct", "Nov", "Dec"]
graph = [0] * 12
for _ in range(n):
d, m, y = input().split()
graph[int(m) - 1] += 1
print(f"Case #{t}:")
for i in range(12):
print(f"{month[i]}:" + "*" * graph[i])
t += 1
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 31244번 СИМЕТРИЧНИ ЧИСЛА (0) | 2025.01.07 |
---|---|
[백준/파이썬] 15858번 Simple Arithmetic (0) | 2025.01.06 |
[백준/파이썬] 1302번 베스트셀러 (0) | 2025.01.04 |
[백준/파이썬] 32571번 Leg Day (1) | 2025.01.03 |
[백준/파이썬] 21167번 Curve Speed (0) | 2025.01.02 |