const input = require("fs").readFileSync("/dev/stdin").toString().split(" ");
function numberOfVerifications() {
let inputMap = input.map(x => Number(x * x));
let answer = 0;
inputMap.forEach(function(element) {
answer += Number(element);
});
console.log(answer % 10);
}
numberOfVerifications(input);
'BAEKJOON > JavaScript' 카테고리의 다른 글
[BAEKJOON] 더하기 사이클 (1110번) (0) | 2022.03.19 |
---|---|
[BAEKJOON] 단어의 개수 (1152번) (0) | 2022.03.18 |
[BAEKJOON] OX퀴즈 (8958번) (0) | 2022.03.18 |
[BAEKJOON] 문자열 반복 (2675번) (0) | 2022.03.18 |
[BAEKJOON] 음계 (2920번) (0) | 2022.03.18 |