Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 데이콘
- Real or Not? NLP with Disaster Tweets
- SW Expert Academy
- 편스토랑
- 백준
- Baekjoon
- 프로그래머스 파이썬
- ChatGPT
- programmers
- gs25
- PYTHON
- 우분투
- 파이썬
- hackerrank
- 자연어처리
- 편스토랑 우승상품
- dacon
- 맥북
- 더현대서울 맛집
- Docker
- 프로그래머스
- 코로나19
- 캐치카페
- github
- AI 경진대회
- 금융문자분석경진대회
- ubuntu
- leetcode
- Git
- Kaggle
Archives
- Today
- Total
솜씨좋은장씨
[BaeKJoon] 1699번: 제곱수의 합 (Python) 본문
728x90
반응형
1일 1문제 115일차!
115일차의 문제는 제곱수의 합입니다.
Solution
inputNum = int(input())
nc = [0] * (inputNum+1)
for i in range(1, inputNum+1):
nc[i] = i
for j in range(1, i):
if (j * j) > i:
break
nc[i] = min(nc[i], nc[i - j * j] + 1)
print(nc[inputNum])
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 50. Pow(x, n) (Python) (0) | 2020.06.02 |
---|---|
[BaeKJoon] 9461번: 파도반 수열 (Python) (0) | 2020.06.01 |
[BaeKJoon] 2745번: 진법 변환 (Python) (0) | 2020.05.30 |
[BaeKJoon] 2225번: 합분해 (Python) (0) | 2020.05.30 |
[BaeKJoon] 2156번: 포도주 시식 (Python) (0) | 2020.05.30 |
Comments