SW Expert Academy

[SWEA] 간단한 369게임 (1926) Python

RiLLa_0511 2023. 5. 5. 01:19
728x90

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=2&contestProbId=AV189xUaI8UCFAZN&categoryId=AV189xUaI8UCFAZN&categoryType=CODE&problemTitle=&orderBy=INQUERY_COUNT&selectCodeLang=PYTHON&select-1=2&pageSize=10&pageIndex=1 

 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

 

t = int(input())

for i in range(1, t + 1):
    cost = []
    p, q, r, s, w = map(int, input().split())
    if w <= r:
        cost.append(q)
    else:
        cost.append(q + s * (w - r))
    cost.append(p * w)
    print("#{} {}".format(i, min(cost)))

 

 

 

 

혼자 공부하며 올리는 블로그입니다. 틀린 내용은 댓글 남겨주시면 감사하겠습니다.