언젠가는 펼쳐 볼 아카이브

[BOJ] 10950번 - A+B - 3 본문

IT/Baekjoon Oline Judge

[BOJ] 10950번 - A+B - 3

개발자희망생고롸파덕 2023. 8. 16. 17:02

사용 언어 : javascript - node.js

 

# 제출 코드

const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : './input.txt';
let input = fs.readFileSync(filePath).toString().split('\n');

const testCaseArray = [];
for (let i = 1; i <= +input[0]; ++i) {
  const tempValue = input[i].split(' ').map((item) => +item);
  testCaseArray.push({ A: tempValue[0], B: tempValue[1] });
}

solution(+input[0], testCaseArray);

function solution(testCase, testCaseArray) {
  for (let i = 0; i < testCase; i++) {
    console.log(testCaseArray[i].A + testCaseArray[i].B);
  }
}

 

'IT > Baekjoon Oline Judge' 카테고리의 다른 글

[BOJ] 25314번 - 코딩은 체육과목 입니다  (0) 2023.08.16
[BOJ] 25304번 - 영수증  (0) 2023.08.16
[BOJ] 2480번 - 주사위 세개  (0) 2023.08.15
[BOJ] 2525 - 오븐 시계  (0) 2023.08.15
[BOJ] 2884 - 알람시계  (0) 2023.08.15