-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))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[프로그래머스/파이썬] 크레인 인형뽑기 게임 (0) | 2022.05.17 |
---|---|
[백준/파이썬] 18429번 근손실 (0) | 2022.05.17 |
[백준/파이썬] 10974번모든 순열 (0) | 2022.05.17 |
[백준/파이썬] 1182번 부분수열의 합 (0) | 2022.05.17 |
[백준/파이썬] 9020번 2021은 무엇이 특별할까? (0) | 2022.05.16 |