/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 340.0 KiB
#3 Accepted 2ms 540.0 KiB
#4 Accepted 2ms 540.0 KiB
#5 Accepted 5ms 656.0 KiB
#6 Accepted 46ms 1.328 MiB
#7 Accepted 40ms 1.551 MiB
#8 Accepted 47ms 1.445 MiB
#9 Accepted 39ms 1.328 MiB
#10 Accepted 1ms 540.0 KiB

Code

/* SRIJON
        SINGHA
            SAMANTA */
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef long double ld;
#define nl "\n"
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
#define yes cout << "YES" << nl
#define no cout << "NO" << nl
#define fi first
#define sec second
#define pb push_back
#define ppb pop_back
#define pf push_front
#define ppf pop_front
#define FIO                           \
    ios_base::sync_with_stdio(false); \
    cin.tie(NULL);                    \
    cout.tie(NULL);
const int mod = 1e9 + 7;

int32_t main()
{
    FIO

    ll t;	cin >> t;
    ll tt=t;
    while (tt--)
    {
        ll n,d; cin>>n>>d;
        ll a,b; cin>>a>>b;
        ll ans=0;
        if(n<=d) ans+=n*a;
        else{
            n-=d;
            ans+=((d*a)+(n*b));
        }
        cout<<ans<<nl;      
    }

    return 0;
}

Information

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