반응형
https://www.acmicpc.net/problem/2480 주사위 세개
def Q_2480()
dices = gets.chomp.split(" ")
diceOne = dices[0].to_i
diceTwo = dices[1].to_i
diceThree = dices[2].to_i
diceMax = [diceOne, diceTwo, diceThree].max
if diceOne == diceTwo && diceTwo == diceThree
puts 10000 + (diceOne*1000)
elsif diceOne == diceTwo || diceOne == diceThree
puts 1000 + (diceOne*100)
elsif diceTwo == diceThree
puts 1000 + (diceTwo*100)
else
puts diceMax * 100
end
end
Q_2480()
'Ruby > 알고리즘' 카테고리의 다른 글
ruby_백준_25304번 영수증 (0) | 2022.10.12 |
---|---|
ruby_백준_2739, 10950, 8393 (0) | 2022.10.11 |
ruby_백준_2525 오븐 시계 (0) | 2022.10.04 |
ruby_백준_2884 알람 시계 (0) | 2022.10.03 |
ruby_백준_14681 사분면 고르기 (0) | 2022.10.02 |