/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 392.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 1ms 532.0 KiB
#4 Accepted 2ms 532.0 KiB
#5 Accepted 5ms 648.0 KiB
#6 Accepted 39ms 1.27 MiB
#7 Accepted 40ms 1.27 MiB
#8 Accepted 40ms 1.406 MiB
#9 Accepted 36ms 1.27 MiB
#10 Accepted 1ms 532.0 KiB

Code

#include <iostream>
using namespace std;

#define ll long long int
#define ld long double
#define endl '\n'
#define MIR183_Mac ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define yes cout << "YES" << endl
#define no cout << "NO" << endl

void solve() {
    // Your code here
    ll a,b,n,d;
    cin>>n>>d;
    cin>>a>>b;
    ll ans=0;
    if(n<=d){
        ans=n*a;
    }
    else ans=d*a+(n-d)*b;
    cout<<ans<<endl;
}

signed main() {
    MIR183_Mac;
    // Always use ll, int may give TLE
    ll tt;
    // tt=1;
    cin >> tt;
    while (tt--) {
        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 17:19:08
Judged At
2024-09-05 17:19:08
Judged By
Score
100
Total Time
40ms
Peak Memory
1.406 MiB