/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 2ms 488.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 3ms 584.0 KiB
#5 Accepted 13ms 540.0 KiB
#6 Accepted 113ms 1.27 MiB
#7 Accepted 123ms 1.523 MiB
#8 Accepted 118ms 1.453 MiB
#9 Accepted 111ms 1.422 MiB
#10 Accepted 2ms 540.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long int
void solve(){
	ll n, d;
	cin >> n >> d;
	ll a, b;
	cin >> a >> b;

	ll totalCost = 0;
        
        if (n <= d) {
            
            totalCost = n * a;
        } else {
            
            totalCost = d * a + (n - d) * b;
        }
        
        cout << totalCost << endl;
}
int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	int t = 1;
	cin >> t;
	while(t--){
		solve();
	}
	return 0;
}

Information

Submit By
Type
Submission
Problem
P1090 Summer trip
Contest
Brain Booster #5
Language
C++20 (G++ 13.2.0)
Submit At
2024-09-05 15:38:17
Judged At
2024-09-05 15:38:17
Judged By
Score
100
Total Time
123ms
Peak Memory
1.523 MiB