티스토리 뷰
https://www.acmicpc.net/problem/11655
습관처럼 trim 해서 게속 틀렸음;;
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString();
const answer = [];
for (let i = 0; i < input.length; i++) {
const ascii = input.charCodeAt(i)
let char;
if (ascii >= 65 && ascii <= 90) {
char = ascii > 77 ? String.fromCharCode(ascii - 26 + 13) : String.fromCharCode(ascii + 13)
} else if (ascii >= 97 && ascii <= 122) {
char = ascii > 109 ? String.fromCharCode(ascii - 26 + 13) : String.fromCharCode(ascii + 13)
} else if (ascii == 32 || (ascii >= 48 && ascii <= 57)) {
char = input[i]
}
answer.push(char);
}
console.log(answer.join(''))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2559번 : 수열 (0) | 2022.03.07 |
---|---|
Node.js) 백준 9996번 : 한국이 그리울 땐 서버에 접속하지 (0) | 2022.03.07 |
Node.js) 백준 1159번 : 농구 경기 (0) | 2022.03.06 |
Node.js) 백준 10988번: 팰린드롬인지 확인하기 (0) | 2022.03.06 |
Node.js) 백준 2979번: 트럭 주차 (0) | 2022.03.06 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 투포인터
- MySQL
- 그래프
- 면접질문
- 로드나인
- BFS
- 서버개발
- create db
- MOD
- create databases;
- 동적프로그래밍
- 서버점검
- 개발자면접
- node.js
- 다이나밍프로그래밍
- 은둔청년체험
- 롱베케이션
- 투포인터 연습
- 면접비
- 최소공통조상
- 다이나믹프로그래밍
- DB 생성
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함