/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 1ms 532.0 KiB
#3 Wrong Answer 2ms 532.0 KiB
#4 Wrong Answer 3ms 532.0 KiB
#5 Wrong Answer 22ms 652.0 KiB
#6 Wrong Answer 207ms 1.395 MiB
#7 Wrong Answer 211ms 1.402 MiB
#8 Wrong Answer 209ms 1.441 MiB
#9 Wrong Answer 205ms 1.438 MiB
#10 Wrong Answer 2ms 320.0 KiB

Code

#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
typedef long long int ll;


using namespace std;
using namespace __gnu_pbds;
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
#define mod 1000000007

ll lcm(ll a,ll b)
{
    return (a*b)/__gcd(a,b);
}


ll binExp(ll a,ll b)
{
    if(b==0)
        return 1;

    ll res=binExp(a,b/2);

    if(b&1)
    {
        return (a*res*res)%mod;

    }
    else
    {
        return (res*res)%mod;
    }
}


bool isPrime(ll n)
{
    for(ll i=2; i*i<=n; i++)
    {
        if(n%i==0)
        {
            return false;
        }
    }

    return true;
}




void solve()
{
   ll n,d;
   cin>>n>>d;

   ll a,b;
   cin>>a>>b;

   ll temp=(d*a);

   n-=d;
   temp+=(n*b);

   cout<<temp<<endl;


}















int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);





    ll t;

    cin>>t;
  //  t=1;






    ll caseNo=1;



    while(t--)
    {
        //  cout<<"Case "<<caseNo<<": ";
        // caseNo++;

        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:34:23
Judged At
2024-10-03 13:11:36
Judged By
Score
10
Total Time
211ms
Peak Memory
1.441 MiB