/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 3ms 536.0 KiB
#2 Accepted 3ms 436.0 KiB
#3 Accepted 3ms 532.0 KiB
#4 Accepted 4ms 580.0 KiB
#5 Accepted 7ms 632.0 KiB
#6 Accepted 44ms 1.27 MiB
#7 Accepted 36ms 1.27 MiB
#8 Accepted 65ms 1.27 MiB
#9 Accepted 53ms 1.367 MiB
#10 Accepted 2ms 532.0 KiB

Code

#include<bits/stdc++.h>
#define ll long long
#define endl '\n'
using namespace std;
int main()
{
    ios_base:: sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    ll t;
    cin>>t;
    while(t--){
        ll n,d;
        cin>>n>>d;
        ll tk, tk2;
        cin>>tk2>>tk;
        if(n>=d){
            ll sub=n-d;
            ll x=d*tk2;
            ll y=sub*tk;
            cout<<x+y<<endl;
        }
        else{
            ll tm=n*tk2;
            cout<<tm<<endl;
        }

    }


    return 0;
}

Information

Submit By
Type
Submission
Problem
P1090 Summer trip
Contest
Sylhet ICPC 2024 Collaborative Challenge: Episode 2
Language
C++17 (G++ 13.2.0)
Submit At
2024-10-30 09:34:59
Judged At
2024-10-30 09:34:59
Judged By
Score
100
Total Time
65ms
Peak Memory
1.367 MiB