문제 링크
풀이
const table = {
black: 0,
brown: 1,
red: 2,
orange: 3,
yellow: 4,
green: 5,
blue: 6,
violet: 7,
grey: 8,
white: 9
};
const colors = require("fs").readFileSync("/dev/stdin").toString().split(/\s/);
console.log((table[colors[0]]*10 + table[colors[1]]) * (10**(table[colors[2]])));
표를 객체 리터럴로 만들어서 활용하였다.
'연습장 > 백준(BOJ) 문제풀이' 카테고리의 다른 글
[백준 2309] 일곱 난쟁이 with Node.js (0) | 2021.04.03 |
---|---|
[백준 1026] 보물 with Python (0) | 2021.04.03 |
[백준 1100] 하얀 칸 with Node.js (0) | 2021.04.02 |
[백준 13458] 시험 감독 with Node.js (0) | 2021.04.02 |
[백준 2902] KMP는 왜 KMP일까? with Node.js (0) | 2021.04.02 |