-Code
n = int(input())
exercise = [input() for _ in range(n)]
week = []
for el in exercise:
if "rest" in el:
week.append("😎")
elif "leg" in el:
week.append("🦵")
else:
week.append("💪")
day, idx = 0, 0
res = []
while day < 31:
res.append(week[idx % n])
day += 1
idx += 1
idx = idx % n
if day % 7 == 0:
print(day // 7, end=" ")
print(*res)
res = []
print(day // 7, end=" ")
print(*res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 14535번 Birthday Graph (0) | 2025.01.05 |
---|---|
[백준/파이썬] 1302번 베스트셀러 (0) | 2025.01.04 |
[백준/파이썬] 21167번 Curve Speed (0) | 2025.01.02 |
[백준/파이썬] 24871번 Календарь на Альфе Центавра (0) | 2025.01.01 |
[백준/파이썬] 32978번 아 맞다 마늘 (0) | 2024.12.31 |