/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 328.0 KiB
#2 Wrong Answer 1ms 320.0 KiB
#3 Wrong Answer 1ms 324.0 KiB
#4 Wrong Answer 2ms 328.0 KiB
#5 Wrong Answer 5ms 588.0 KiB
#6 Wrong Answer 40ms 1.477 MiB
#7 Wrong Answer 40ms 1.359 MiB
#8 Wrong Answer 41ms 1.324 MiB
#9 Wrong Answer 39ms 1.473 MiB
#10 Wrong Answer 1ms 512.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 n,d;
    cin>>n>>d;
    ll a,b;
    cin>>a>>b;
    ll ans=0;
    ans+=(d*a);
    n-=d;
    if(n<=0){
        cout<<ans<<endl;
        return;
    }
    ans+=n*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 15:33:52
Judged At
2024-10-03 13:11:37
Judged By
Score
10
Total Time
41ms
Peak Memory
1.477 MiB