/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 320.0 KiB
#2 Accepted 1ms 536.0 KiB
#3 Accepted 2ms 488.0 KiB
#4 Accepted 3ms 512.0 KiB
#5 Accepted 22ms 532.0 KiB
#6 Accepted 205ms 1.324 MiB
#7 Accepted 209ms 1.398 MiB
#8 Accepted 212ms 1.344 MiB
#9 Accepted 214ms 1.395 MiB
#10 Accepted 2ms 324.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-10-03 13:11:08
Judged By
Score
100
Total Time
214ms
Peak Memory
1.398 MiB