Home

[백준] 11866번 요세푸스 문제 0 _ 문제 풀이

1. 문제 https://www.acmicpc.net/problem/11866 2. 풀이 queue를 이용하면 쉽게 문제를 해결할 수 있다. from collections import deque N, K = map(int, input().split()) answer = [] queue = deque([x + 1 for x in range(N)]) while len(queue): for _ in range(K): queue.append(str(queue.popleft())) answer.append(queue.pop()) print('<%s>' % ', '.joi...

Read more

[프로그래머스] 행렬의 덧셈 문제 풀이

1. 문제 https://programmers.co.kr/learn/courses/30/lessons/12950 2. 풀이 def solution(arr1, arr2): row, col = len(arr1), len(arr1[0]) answer = [ [0] * col for _ in range(row) ] for r in range(row): for c in range(col): answer[r][c] = arr1[r][c] + arr2[r][c] return answer

Read more

[프로그래머스] 콜라츠 추측 문제 풀이

1. 문제 https://programmers.co.kr/learn/courses/30/lessons/12943 2. 풀이 def solution(num): try_num = 0 while try_num < 500: if num == 1: return try_num if num % 2 == 0 : num /= 2 elif num % 2 == 1 : num = num * 3 + 1 try_num += 1 return -1

Read more