-
[백준]1312번 소수 with Node.jsProgramming/Algorithm 2023. 5. 7. 21:48
const [a,b,n] = require("fs").readFileSync("testInput.txt").toString().trim().split(" ").map(Number); let result = a % b; for(let i = 0; i < n-1; i++){ result *= 10; result %= b; }; result *= 10; console.log(Math.floor(result/b));
구글링 시 Nodejs 풀이가 존재하지 않아서 누군가에겐 도움이 되었으면 하여 올린다.
'Programming > Algorithm' 카테고리의 다른 글
[백준]1822번 차집합 with Node.js (1) 2023.06.04 [백준]5555번 반지 with Node.js (0) 2023.05.13 [백준]10211번 Maximum Subarray with Node.js (0) 2023.04.02 [백준]1758번 알바생 강호 with Node.js (0) 2023.03.26 [백준]10158번 개미 with Node.js (0) 2023.03.19