728x90
def solution(n, s):
answer = []
result = []
if n > s:
result.append(-1)
else:
count1 = s // n
for i in range(n):
result.append(count1)
index = len(result) - 1
for i in range(s % n):
result[index] += 1
index -= 1
answer = result
return answer
result = []
result.append(-1)
print(result)
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - 공원 산책(Python)(복습) (0) | 2023.10.03 |
---|---|
프로그래머스 스쿨 - 개인정보 수집 유효기간(Python)(복습) (0) | 2023.10.02 |
프로그래머스 스쿨 - 피자 나눠 먹기(3)(Python) (0) | 2023.09.30 |
프로그래머스 스쿨 - 피자 나눠 먹기(1)(Python) (0) | 2023.09.29 |
프로그래머스 스쿨 - 편지(len 공백도 계산함)(Python) (0) | 2023.09.28 |