섞기 전 카드 위치
- 문제 유형 : Simulation
- 사용언어 : Python
- 난이도 : 실버 5
- 출처 : 코드 트리
n = int(input())
# Before shuffle
location = list(map(int, input().split()))
card = list(map(int, input().split()))
cnt = 0
list_set = []
before_location = [0]*len(location)
for _ in range(3):
for idx, loc in enumerate(location):
before_location[idx] = card[loc-1]
card = before_location.copy()
for i in card:
print(i)
반응형
'Programming Test > 문제풀이' 카테고리의 다른 글
[문제 풀이 17] 코드 트리 - 연결된 그래프 (0) | 2024.04.18 |
---|---|
[문제 풀이 16] 프로그래머스 - 카드 뭉치 (0) | 2024.04.17 |
[문제 풀이 14] 프로그래머스 - 기능 개발 (0) | 2024.04.16 |
[문제 풀이 13] 코드 트리 - 오목의 승패 (0) | 2024.04.16 |
[문제 풀이 12] 코드 트리 - 색종이 2 (0) | 2024.04.15 |