백준 10757번

정하윤·2022년 8월 5일
0
post-custom-banner

10757번을 어떻게 풀어야하지 고민을해봤다.

1의자리수씩 더해서 합쳐야되는건가 고민을해봤는데 이러면 더느려지기만할 것 같았다.
뭘해도 느려만 질거같았다.
그래서 찾아보니

let fs = require("fs");
// let input = fs.readFileSync('/dev/stdin').toString().split(' ');
let input = fs.readFileSync("inp.txt").toString().split(" ");

const a = BigInt(input[0]);
const b = BigInt(input[1]);

console.log((a + b).toString());

이런식으로 큰수를 구하는 함수가있었다....
역시 사람은 머리가 좋아야 고생을 안하는..... 또 깨닫게된다.

0개의 댓글