Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 백준 17779
- JPA
- Spring
- java 기술면접
- MySQL
- 백준 19238
- with recursive
- sql 기술면접
- Coroutine
- 백준 15685
- spring oauth
- spring cloud
- 프로래머스
- re.split
- springboot
- 웹어플리케이션 서버
- MSA
- 파이썬
- 프로그래머스
- Spring Boot
- 백준
- Kotlin
- 백준 17626
- spring security
- 백준 16235
- 백준 파이썬
- 백준 16236
- java
- 백준 16719
- JVM
Archives
- Today
- Total
시작이 반
[백준] 14467번번 (python 파이썬) 본문
SMALL
소 리스트를 만들어 처음 관찰된 소들은 해당 위치를 저장한다.
처음 관찰된 소가 아니면 저장된 위치와 해당 위치를 비교하여 다르면 count를 증가시킨다.
n = int(input())
cow = [-1] * 11
cnt = 0
for _ in range(n):
target_cow, position = map(int, input().split(' '))
if cow[target_cow] == -1:
cow[target_cow] = position
else:
if cow[target_cow] != position:
cnt += 1
cow[target_cow] = position
print(cnt)
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 2578번번 (python 파이썬) (0) | 2021.03.25 |
---|---|
[백준] 12933번번 (python 파이썬) (3) | 2021.03.25 |
[백준] 1913번번 (python 파이썬) (0) | 2021.03.24 |
[백준] 20546번번 (python 파이썬) (0) | 2021.03.24 |
[백준] 1753번번 (python 파이썬) (1) | 2021.03.20 |