728x90
반응형
단순 구현 문제이다.
for i in range(int(input())):
print(f"Case {i+1}:")
for _ in range(int(input())):
n = int(input())
if n > 5:
continue
print(n+1)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 9295번 주사위(python) (0) | 2021.02.20 |
---|---|
백준 알고리즘 9288번 More Dice(python) (0) | 2021.02.20 |
백준 알고리즘 9094번 수학적 호기심(python) (0) | 2021.02.20 |
백준 알고리즘 9085번 더하기(python) (0) | 2021.02.20 |
백준 알고리즘 8932번 7종 경기(python) (0) | 2021.02.20 |