문제
https://www.acmicpc.net/problem/2480
풀이
// 백준 제출용
const readFileSyncAddress = '/dev/stdin';
// VSC 테스트용
// const readFileSyncAddress = 'input.txt';
const fs = require('fs');
let [a, b, c] = fs.readFileSync(readFileSyncAddress).toString().trim().split(/\s/g).map(v => +v);
let reward = 0;
if (a === b && a === c && b === c) reward = a*1000 + 10000;
else if (a === b && a!== c) reward = a*100 + 1000;
else if (a === c && a!== b) reward = a*100 + 1000;
else if (b === c && b!== a) reward = b*100 + 1000;
else if (a !== b && a !== c && b !== c) reward = Math.max(a,b,c) * 100;
//제출
console.log(reward);
'Algorithm & 자료구조 > 알고리즘 w.JavaScript' 카테고리의 다른 글
[알고리즘] 백준 1110번: 더하기 사이클 W_node.js (0) | 2022.04.25 |
---|---|
[알고리즘] 백준 10950번: A+B - 3 W_node.js (0) | 2022.04.25 |
[알고리즘] 백준 2525번: 오븐 시계 W_node.js (0) | 2022.04.24 |
[알고리즘] 백준 2884번: 알람 시계 W_node.js (2) | 2022.04.21 |
[알고리즘] 백준 11723번: 집합 (비트마스크) W_node.js (0) | 2022.03.22 |