-Code
for t in range(1, int(input()) + 1):
n = int(input())
names = [input() for _ in range(n)]
res, now = 0, names[0]
for i in range(1, n):
if now > names[i]:
res += 1
continue
now = names[i]
print(f"Case #{t}: {res}")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32025번 체육은 수학과목 입니다 (0) | 2024.07.14 |
---|---|
[백준/파이썬] 27325번 3 つの箱 (Three Boxes) (0) | 2024.07.13 |
[백준/파이썬] 14969번 Taro's Shopping (0) | 2024.07.11 |
[백준/파이썬] 27194번 Meeting Near the Fountain (0) | 2024.07.10 |
[백준/파이썬] 26122번 가장 긴 막대 자석 (0) | 2024.07.09 |