/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 536.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 1ms 320.0 KiB
#4 Accepted 2ms 580.0 KiB
#5 Accepted 5ms 576.0 KiB
#6 Accepted 62ms 1.27 MiB
#7 Accepted 37ms 1.414 MiB
#8 Accepted 38ms 1.27 MiB
#9 Accepted 61ms 1.312 MiB
#10 Accepted 1ms 532.0 KiB

Code

/**
 *    author:  pollob18
 *    created: July 2024
**/
#include <bits/stdc++.h>
#define ll   long long int
#define yes  "YES"
#define no   "NO"
#define nl   "\n"
#define pb   push_back
#define all(a)  a.begin(),a.end()
#define allr(a) a.rbegin(),a.rend()
#define Code_By_pollob ios::sync_with_stdio(false); cin.tie(0);
using namespace std;

void solution()
{
    ll n,d;
    cin>>n>>d;
    ll a,b;
    cin>>a>>b;
    if(n<=d){
        cout<<n*a<<nl;
       return;
    }
    ll x=d*a;
    ll y=(n-d)*b;
    cout<<x+y<<nl;
}
int main()
{
    Code_By_pollob
    int tc;
    cin>>tc;
    while(tc--)
    {
        solution();
    }
    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:44:55
Judged At
2024-09-05 15:44:55
Judged By
Score
100
Total Time
62ms
Peak Memory
1.414 MiB