일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 2주 프로젝트
- 4주 프로젝트
- 리덕스
- 백준
- javascript
- til
- LeetCode
- 리액트
- 회고
- python
- 자바스크립트
- 타입스크립트
- 알고리즘
- 코어 자바스크립트
- 타입스크립트 올인원
- 리트코드
- 토익
- 프로그래머스
- 손에 익히며 배우는 네트워크 첫걸음
- codestates
- js
- programmers
- 코드스테이츠
- Async
- SQL 고득점 Kit
- 타임어택
- 제로초
- 정재남
- 렛츠기릿 자바스크립트
- 파이썬
Archives
- Today
- Total
Jerry
[#32][프로그래머스][입문] 개미 군단 본문
반응형
function solution(hp) {
let general = 5;
let solider = 3;
let worker = 1;
let number = 0;
// first
number += Math.floor(hp / general);
hp = Math.ceil(hp % general);
// second
number += Math.floor(hp / solider);
hp = Math.ceil(hp % solider);
// last
if (hp < 1) return number;
number += Math.floor(hp / worker);
return number;
}
/* 다른 사람 풀이 */
function solution(hp) {
return Math.floor(hp/5)+Math.floor((hp%5)/3)+(hp%5)%3;
}
/* 다른 사람 풀이 */
function solution(hp) {
const 장군개미 = Math.floor(hp / 5);
const 병정개미 = Math.floor((hp - (장군개미 * 5)) / 3);
const 일개미 = hp - ((장군개미 * 5) + (병정개미 * 3));
return 장군개미+병정개미+일개미;
}
반응형
'Problem Solving > Algorithm 문제 풀기' 카테고리의 다른 글
[#34][프로그래머스][입문] 가위 바위 보 (0) | 2023.01.13 |
---|---|
[#33][프로그래머스][입문] 모스부호 (1) (0) | 2023.01.13 |
[#31][프로그래머스][입문] 순서쌍의 개수 (0) | 2023.01.11 |
[#30][프로그래머스][입문] 진료순서 정하기 (2) | 2023.01.11 |
[#29][프로그래머스][입문] 외계행성의 나이 (0) | 2023.01.11 |