실버1문제치고 N이 1e15에 최대 1e18까지가서 당황. 이분탐색해보려다 메모리 초과났다. import sys input = sys.stdin.readline from collections import deque def buy_flower(optimal_cost): global min_cost queue = deque() start_price = 0 flower = 0 queue.append([start_price,flower]) while queue: cur_price,flower = queue.popleft() for flo_cnt,flo_cost in ((A,B),(C,D)): if cur_price + flo_cost =N: if cur_price + flo_cost < min_cost: min..