티스토리 뷰
https://www.acmicpc.net/problem/1094
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim();
const solve = (input) => {
let target = +input
let cnt = 0;
while (target > 0) {
if (target & 1) {
cnt++;
}
target >>= 1;
}
console.log(cnt)
}
solve(input);
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 13244번: Tree (0) | 2022.04.04 |
---|---|
Node.js)백준 2234번: 성곽 (0) | 2022.04.03 |
Node.js) 백준 14890번: 경사로 (0) | 2022.04.03 |
Node.js) 백준 17471번: 게리맨더링 (0) | 2022.04.03 |
Node.js) 백준 5338번: 마이크로소프트 로고 (0) | 2022.04.01 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 개발자면접
- node.js
- DB 생성
- 동적프로그래밍
- 다이나믹프로그래밍
- 서버개발
- 로드나인
- 서버점검
- 은둔청년체험
- create db
- 투포인터
- 투포인터 연습
- 롱베케이션
- create databases;
- 면접비
- MySQL
- 최소공통조상
- MOD
- BFS
- 다이나밍프로그래밍
- 면접질문
- 그래프
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함