본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 16922번로마 숫자 만들기

by 현장 2022. 5. 17.

-Code

from itertools import combinations_with_replacement
n = int(input())
nums = [1, 5, 10, 50]
nums_p = list(combinations_with_replacement(nums, n))
sum_n = []
for i in nums_p:
    if sum(i) not in sum_n:
        sum_n.append(sum(i))
print(len(sum_n))