Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 공룡게임
- react
- nestjs
- TypeScript
- 게임
- Python
- game
- cookie
- Queue
- JavaScript
- dfs
- MongoDB
- mongoose
- typeORM
- AWS
- Express
- Nest.js
- MySQL
- 정렬
- Dinosaur
- OCR
- Bull
- Sequelize
- jest
- class
- GIT
- flask
- nodejs
- 자료구조
Archives
- Today
- Total
포시코딩
[프로그래머스][Lv.0] 개미 군단 본문
728x90
문제
https://school.programmers.co.kr/learn/courses/30/lessons/120837
내 풀이 A
def solution(hp):
answer = 0
a = hp // 5
print('a: ', a)
hp -= (a*5)
b = hp // 3
print('b: ', b)
hp -= (b*3)
c = hp // 1
print('c: ', c)
answer = a+b+c
return answer
내 풀이 B
def solution(hp):
answer = 0
for power in [5, 3, 1]:
ant = hp // power
hp -= ant * power
answer += ant
return answer
위에서 푼 방법을 정리해 개미 종류가 늘어나도 손쉽게 확장할 수 있도록 변경해봤다.
다른 풀이
def solution(hp):
answer = 0
for ant in [5, 3, 1]:
d, hp = divmod(hp, ant)
answer += d
return answer
divmod(a, b) = 몫, 나머지
a를 b로 나눈 값의 몫과 나머지를 출력하는 함수를 사용해서
나처럼 변하는 hp에 대해 나머지로 더 편하게 구하는 방법을 사용했음
728x90
'자료구조알고리즘 > 문제풀이' 카테고리의 다른 글
[프로그래머스][Lv.0] 가위 바위 보 (0) | 2023.01.02 |
---|---|
[프로그래머스][Lv.0] 암호 해독 (0) | 2022.12.31 |
[프로그래머스][Lv.0] 순서쌍의 개수 (1) | 2022.12.28 |
[프로그래머스][Lv.0] 제곱수 판별하기 (0) | 2022.12.27 |
[프로그래머스][Lv.0] 배열의 유사도 (0) | 2022.12.27 |