티스토리 뷰
https://www.acmicpc.net/problem/1019
책 페이지
풀이
// https://www.acmicpc.net/problem/1019
// 책 페이지
const input: number = +require('fs').readFileSync('./dev/stdin').toString().trim();
const nums = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
let start = 1;
let end = input;
let mul = 1;
function calc(num: number, mul: number) {
while (num > 0) {
nums[num % 10] += mul;
num = Math.floor(num / 10);
}
}
while (start <= end) {
while (start % 10 !== 0 && start <= end) {
calc(start, mul);
start++;
}
while (end % 10 !== 9 && end >= start) {
calc(end, mul);
end--;
}
if (start > end) break;
start = Math.floor(start / 10);
end = Math.floor(end / 10);
for (let i = 0; i < 10; i++) {
nums[i] += (end - start + 1) * mul;
}
mul *= 10;
}
console.log(nums.join(' '));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 10090번: Counting Inversions (0) | 2024.03.04 |
---|---|
TS) 백준 10090번: Counting Inversions (0) | 2024.03.04 |
TS) 백준 1725번: 히스토그램 (0) | 2024.03.03 |
TS) 백준 15964번: 이상한 기호 (0) | 2024.03.03 |
TS) 백준 6549번: 히스토그램에서 가장 큰 직사각형 (0) | 2024.03.03 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create db
- 개발자면접
- MySQL
- 그래프
- 면접비
- node.js
- 은둔청년체험
- 투포인터 연습
- 롱베케이션
- 투포인터
- 다이나믹프로그래밍
- BFS
- 다이나밍프로그래밍
- 면접질문
- DB 생성
- 동적프로그래밍
- 서버점검
- create databases;
- 서버개발
- 최소공통조상
- MOD
- 로드나인
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함