๐ท ๋ฌธ์

๐ก ์ฝ๋
from sys import stdin
from collections import deque
def pour(x,y):
if visited[x][y] == False:
visited[x][y] = True
q.append([x,y])
def find():
while q:
x,y = q.popleft()
res = c-x-y
if x == 0:
res_list.append(res)
'''
ex) a->b๋ฌผํต์ผ๋ก ๋ฌผ์ ์ฎ๊ธฐ๋ ๊ฒฝ์ฐ
1. a๊ฐ ๊ฐ์ง๊ณ ์๋ ๋ฌผ์ ๋ชจ๋ ์ฎ๊น
2. b๊ฐ ์์ผ๋ก ๊ฐ์ง ์ ์๋ ๋ฌผ์ ์ ๋งํผ๋ง ๋ฐ์
์ด ๋ ๊ฒฝ์ฐ ์ค, ๋ ์์ ๊ฐ์ ์ฎ๊ธธ ์์ผ๋ก ์ ํจ
: a๊ฐ ๊ฐ์ง๊ณ ์๋ ๋ฌผ์ ์์ด b๊ฐ ๋ฐ์ ์ ์๋ ์๋ณด๋ค ํฌ๋ฉด ์๋๋ฏ๋ก
'''
water = min(x, b-y)
pour(x-water, y+water)
water = min(x, c-res)
pour(x - water, y)
water = min(y, a-x)
pour(x + water, y-water)
water = min(y, c-res)
pour(x, y-water)
water = min(res, a-x)
pour(x+water, y)
water = min(res, b-y)
pour(x, y+water)
a,b,c = map(int, stdin.readline().split())
visited = [[False for _ in range(b+1)] for _ in range(a+1)]
visited[0][0] = True
q = deque()
q.append([0,0])
res_list = []
find()
res_list.sort()
for i in res_list:
print(i, end=' ')
๐