100440: [AtCoder]ABC044 A - Tak and Hotels (ABC Edit)

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:4 Solved:0

Description

Score : $100$ points

Problem Statement

There is a hotel with the following accommodation fee:

  • $X$ yen (the currency of Japan) per night, for the first $K$ nights
  • $Y$ yen per night, for the $(K+1)$-th and subsequent nights

Tak is staying at this hotel for $N$ consecutive nights. Find his total accommodation fee.

Constraints

  • $1 \leq N, K \leq 10000$
  • $1 \leq Y < X \leq 10000$
  • $N,\,K,\,X,\,Y$ are integers.

Input

The input is given from Standard Input in the following format:

$N$
$K$
$X$
$Y$

Output

Print Tak's total accommodation fee.


Sample Input 1

5
3
10000
9000

Sample Output 1

48000

The accommodation fee is as follows:

  • $10000$ yen for the $1$-st night
  • $10000$ yen for the $2$-nd night
  • $10000$ yen for the $3$-rd night
  • $9000$ yen for the $4$-th night
  • $9000$ yen for the $5$-th night

Thus, the total is $48000$ yen.


Sample Input 2

2
3
10000
9000

Sample Output 2

20000

Input

题意翻译

有一家酒店,这家酒店住宿费的收取规则如下 - 前K晚每晚X元 - 从K+1晚开始每晚Y元 高橋老弟要在这里连续住N晚,问他的住宿费合计为多少元 #### 输入格式 第一行,N 第二行,K 第三行,X 第四行,Y #### 输出格式 一行,住宿总费用

加入题单

算法标签: