코딩 테스트/Baekjoon

S4 2164. 카드2

  • -
728x90
반응형

문제 보기 :  2164번: 카드2


문제

  • 정답률 : 50%


작성 코드

n = int(input())
cards = [i+1 for i in range(n)]

from collections import deque
cards = deque(cards)

while len(cards)!=1:
    cards.popleft()
    if cards:
        cards.append(cards.popleft())

answer = cards.pop()
print(answer)

풀이

생략

320x100
728x90

'코딩 테스트 > Baekjoon' 카테고리의 다른 글

S1 11660. 구간 합 구하기 5  (1) 2024.12.03
S4 1620. 나는야 포켓몬 마스터 이다솜  (0) 2024.12.01
S4 11047. 동전 0  (0) 2024.11.29
S4 10828. 스택  (0) 2024.11.29
S2 1406. 에디터  (0) 2024.11.27
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.