/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 2ms 492.0 KiB
#3 Accepted 1ms 636.0 KiB
#4 Accepted 1ms 548.0 KiB
#5 Accepted 5ms 540.0 KiB
#6 Accepted 49ms 1.395 MiB
#7 Accepted 39ms 1.297 MiB
#8 Accepted 39ms 1.27 MiB
#9 Accepted 38ms 1.27 MiB
#10 Accepted 1ms 540.0 KiB

Code

#include<bits/stdc++.h>
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout << it << " "; cout << endl;
using namespace std;
using ll = long long;
using ld = long double;

void solve() {
    ll n, d, a, b;
    cin >> n >> d >> a >> b;
    ll ans = a * min(n, d);
    ans += b * max(0LL, n - d);
    cout << ans << endl;
    return;
}

signed main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++) {
        // cout << "Case " << 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:33:08
Judged At
2024-09-05 15:33:08
Judged By
Score
100
Total Time
49ms
Peak Memory
1.395 MiB