카일_

Algorithm

Algorithm/백준

백준 | #2480 "주사위 세개"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs .readFileSync(__dirname + '/input.txt') .toString() .split(' ') .map(Number); const [a, b, c] = [...input]; const answer = (a, b, c) => { if (a === b && a === c && b === c) return console.log(10000 + a * 1000); if (a !== b || b !== c || a !== c) { if (a === b || a === c)..

Algorithm/백준

백준 | #2525 "오븐 시계"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs .readFileSync(__dirname + '/input.txt') .toString() .split('\n'); let a = Number(input[0].split(' ')[0]); let b = Number(input[0].split(' ')[1]); let c = Number(input[1]); let hour = Math.floor((a * 60 + b + c) / 60); let min = Math.floor((a * 60 + b + c) % 60); if (hour..

Algorithm/백준

백준 | #2884 "알람 시계"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs .readFileSync(filePath) .toString() .split(' ') .map(Number); let H = input[0]; let M = input[1]; M -= 45; if (M < 0) { M += 60; H--; if (H === -1) { H = 23; } } console.log(H + ' ' + M); 마무리 두 수를 입력 받아 시간과 분으로 나누고 -45분 한 결과값을 반환하는 문제였다. 일단 목적인 분(M)을 -45한다. 그 다음 경우의 수를 생..

Algorithm/프로그래머스

프로그래머스 | #Lv1 "같은 숫자는 싫어"

문제 설명 배열 arr가 주어집니다. 배열 arr의 각 원소는 숫자 0부터 9까지로 이루어져 있습니다. 이때, 배열 arr에서 연속적으로 나타나는 숫자는 하나만 남기고 전부 제거하려고 합니다. 단, 제거된 후 남은 수들을 반환할 때는 배열 arr의 원소들의 순서를 유지해야 합니다. 예를 들면, arr = [1, 1, 3, 3, 0, 1, 1] 이면 [1, 3, 0, 1] 을 return 합니다. arr = [4, 4, 4, 3, 3] 이면 [4, 3] 을 return 합니다. 배열 arr에서 연속적으로 나타나는 숫자는 제거하고 남은 수들을 return 하는 solution 함수를 완성해 주세요. 제한 조건 배열 arr의 크기 : 1,000,000 이하의 자연수 배열 arr의 원소의 크기 : 0보다 크거나..

Algorithm/백준

백준 | #25083 "새싹"

문제 나의 풀이 console.log(` ,r'"7 r\`-_ ,' ,/ \\. ". L_r' \`~\\/ | |`); 마무리 백틱 안에는 여러 줄의 문자를 입력 할 수 있다.

Algorithm/백준

백준 | #10869 "사칙연산"

문제 나의 풀이 const fs = require("fs"); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs.readFileSync(filePath).toString().split("\n"); input = input[0]; input = input.split(" ").map((item) => +item); let devide = input[0] / input[1]; console.log(input[0] + input[1]); console.log(input[0] - input[1]); console.log(input[0] * input[1]); console.log(Math.floor(..

Algorithm/백준

백준 | #14681 "사분면 고르기"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs .readFileSync(0) .toString() .trim() .split('\n'); const a = parseInt(input[0]); const b = parseInt(input[1]); if (a > 0 && b > 0) { console.log(1); } else if (a 0) { console.log(2); } else if (a 0 && b < 0) { con..

Algorithm/백준

백준 | #2588 "곱셈"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; const [A, B] = fs .readFileSync(filePath) .toString() .trim() .split('\n'); const [B0, B1, B2] = B.split(''); const temp1 = A * B2; const temp2 = A * B1; const temp3 = A * B0; const sum = temp1 + Number(`${temp2}0`) + Number(`${temp3}00`); // console.log([A, B]); // console.log([B0, B1..

Algorithm/백준

백준 | #10718 "We love kriii"

문제 나의 풀이 console.log("강한친구 대한육군"); console.log("강한친구 대한육군"); 마무리 입력 값이 없는 간단한 출력문제였다. console.log 두 줄로 출력해도 되지만 \n기호를 통해 한 줄의 코드로도 작성이 가능하다. console.log(`강한친구 대한육군\n강한친구 대한육군`);

Algorithm/백준

백준 | #10430 "나머지"

문제 나의 풀이 const fs = require('fs'); const filePath = process.platform === 'linux' ? '/dev/stdin' : '.input.txt'; let input = fs .readFileSync(filePath) .toString() .split(' ') .map(Number); const A = input[0]; const B = input[1]; const C = input[2]; console.log((A + B) % C); console.log(((A % C) + (B % C)) % C); console.log((A * B) % C); console.log(((A % C) * (B % C)) % C); 마무리 입력 값을 받아 주어진 사칙연산..