/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 1ms 348.0 KiB
#3 Wrong Answer 1ms 352.0 KiB
#4 Wrong Answer 2ms 500.0 KiB
#5 Wrong Answer 5ms 532.0 KiB
#6 Wrong Answer 40ms 1.41 MiB
#7 Wrong Answer 40ms 1.375 MiB
#8 Wrong Answer 36ms 1.27 MiB
#9 Wrong Answer 35ms 1.414 MiB
#10 Wrong Answer 1ms 532.0 KiB

Code

/**
*   Author : As_Shejan
*   Created: 2024-09-06 17:44:39
**/
#include <bits/stdc++.h>
using namespace std;

#define FastIO ios_base::sync_with_stdio(false); cin.tie(NULL);
#define vi vector<ll>
#define pi pair<ll, ll>
#define vp vector<pair<ll, ll>>
#define f first
#define sc second
#define all(x) x.begin(), x.end()
#define en   '\n'
#define YES cout << "YES" << en
#define NO cout << "NO" << en
#define yes cout << "Yes" << en
#define no cout << "No" << en
#define fill_number(x, n) setfill('0') << setw(n) << (x)
#define precision_number(x, n) fixed << setprecision(n) << (x)
template <typename T>
T gcd(T a, T b)
{
while (b != 0)
{
int temp = b;
b = a % b;
a = temp;
}
return a;
}
template <typename T>
T lcm(T a, T b)
{
return (a * (b / gcd(a, b)));
}

typedef long long  ll;
typedef unsigned long long ull;
typedef long double lld;



int32_t main()
{
    FastIO;

    ll t;
    cin >> t;
    while(t--)
    {
       ll n, d, a, b;
       cin>>n>>d;
       cin>>a>>b;
       
       ll x = d * a;
       ll y = (n - d) * b;

       cout<<x + y <<en;
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1090 Summer trip
Language
C++20 (G++ 13.2.0)
Submit At
2024-09-06 12:48:49
Judged At
2024-09-06 12:48:49
Judged By
Score
10
Total Time
40ms
Peak Memory
1.414 MiB