/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 328.0 KiB
#2 Accepted 1ms 384.0 KiB
#3 Accepted 1ms 416.0 KiB
#4 Accepted 2ms 576.0 KiB
#5 Accepted 5ms 576.0 KiB
#6 Accepted 41ms 1.438 MiB
#7 Accepted 41ms 1.312 MiB
#8 Accepted 41ms 1.406 MiB
#9 Accepted 41ms 1.391 MiB
#10 Accepted 1ms 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-11-11 02:35:17
Judged By
Score
100
Total Time
41ms
Peak Memory
1.438 MiB