Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
何か問題が発生したようで申し訳ありません。何が起こりましたか?

book
Bob's Bus Ticket Problem

Bob has recently started commuting by bus. We know that a one bus ride ticket costs a dollars. Besides, Bob found out that he can buy a special ticket for m rides, also he can buy it several times. It costs b dollars. Bob will need to use bus n times. Help Bob to calculate what is the minimum sum of money he will have to spend to make n rides?

Example 1

Input:

n = 10; m = 3; a = 1; b = 2

Output:

7

Example 2

Input:

n = 10; m = 2; a = 1; b = 1

Output:

5
main.cpp

main.cpp

C++

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt