https://atcoder.jp/contests/abc210/tasks/abc210_a
시간 2초, 메모리 1024MB
input :
output :
조건 :
a가 n 이하인 경우에는 n * x만 출력하면 된다.
그거보돠 큰 경우에만 추가적으로 n - a개 만큼 y엔을 지불하면 된다.
import sys
n, a, x, y = map(int, sys.stdin.readline().split())
# cnt = 0
# ans = 0
# while cnt < n:
# if cnt < a:
# ans += x
# else:
# ans += y
# cnt += 1
# print(ans)
print(a * x + (n - a) * y if n > a else n * x)
문제를 풀 때 n개를 출력하는 건데 계속 a * x를 하다가 틀렸다 ㅋㅋㅋㅋㅋㅋ