티스토리 뷰
https://www.acmicpc.net/problem/2870
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().split('\n');
input.shift();
const answer = [];
input.forEach(v => {
let str = ''
for (let i = 0; i < v.length; i++) {
if (v.charCodeAt(i) >= 48 && v.charCodeAt(i) <= 57) {
str += v[i];
} else {
if (str != '') {
while (str.length > 1 && str[0] == '0') {
str = str.substring(1,)
}
answer.push(str);
str = '';
}
}
}
if (str != '') {
while (str.length > 1 && str[0] == '0') {
str = str.substring(1,)
}
answer.push(str);
}
})
const check = (a, b) => {
if (a.length > b.length) {
return 1;
} else if (a.length < b.length) {
return -1;
} else {
const A = a.split('').map(Number);
const B = b.split('').map(Number);
for (let i = 0; i < A.length; i++) {
if (A[i] < B[i]) {
return -1;
} else if (A[i] > B[i]) {
return 1;
}
}
return 1;
}
}
console.log(answer.sort((a, b) => check(a, b)).join('\n'))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 3474번: 교수가 된 현우 (0) | 2022.03.09 |
---|---|
Node.js) 백준 10709번: 기상캐스터 (0) | 2022.03.09 |
Node.js) 백준 4659번: 비밀번호 발음하기 (0) | 2022.03.09 |
Node.js) 백준 2910번 : 빈도 정렬 (0) | 2022.03.09 |
Node.js) 백준 2828번 : 사과 담기 게임 (0) | 2022.03.09 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- BFS
- 투포인터
- 다이나밍프로그래밍
- node.js
- 다이나믹프로그래밍
- 은둔청년체험
- MOD
- 그래프
- create db
- 개발자면접
- create databases;
- 서버개발
- 롱베케이션
- 동적프로그래밍
- 면접질문
- DB 생성
- 면접비
- MySQL
- 최소공통조상
- 로드나인
- 서버점검
- 투포인터 연습
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함