BOJ 2675

let input = require("fs").readFileSync("./input.txt").toString().split("\n");

const num = input.shift();

for (let i = 0; i < num; i++) {
  let result = "";

  const [key, val] = input[i].split(" ");
  for (let j = 0; j < val.length; j++) {
      result += val[j].repeat(key);
  }
  console.log(result);
}

split(' ')을 기준으로 key, val로 나눈 후 repeat 메서드를 통해 key 만큼 반복해서 출력

좋은 웹페이지 즐겨찾기