본문 바로가기

시작이 반

검색하기
시작이 반
프로필사진 G_Gi

  • 분류 전체보기 (287)
    • 알고리즘 (178)
      • 백준 (90)
      • Programmers (83)
      • 활용 방법 (4)
    • Programming (98)
      • Java (9)
      • Kotlin (5)
      • Python (2)
      • MySQL (8)
      • Spring (39)
      • JPA (11)
      • MSA (13)
      • WEB (2)
      • React (1)
      • 기타 (8)
    • 기타 (7)
      • 계획 (2)
      • 면접준비 (5)
      • 포트폴리오 (0)
Guestbook
Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
일 월 화 수 목 금 토
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
  • 백준
  • spring cloud
  • MySQL
  • 백준 19238
  • 백준 16719
  • 프로래머스
  • 파이썬
  • Spring
  • 웹어플리케이션 서버
  • Kotlin
  • sql 기술면접
  • with recursive
  • 백준 17779
  • springboot
  • JVM
  • Spring Boot
  • 프로그래머스
  • re.split
  • java
  • 백준 16235
  • spring security
  • 백준 17626
  • spring oauth
  • MSA
  • JPA
  • 백준 16236
  • 백준 15685
  • java 기술면접
  • 백준 파이썬
  • Coroutine
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록백준 14467 (1)

시작이 반

[백준] 14467번번 (python 파이썬)

소 리스트를 만들어 처음 관찰된 소들은 해당 위치를 저장한다. 처음 관찰된 소가 아니면 저장된 위치와 해당 위치를 비교하여 다르면 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)

알고리즘/백준 2021. 3. 24. 18:02
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바