/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 324.0 KiB
#2 Wrong Answer 2ms 320.0 KiB
#3 Wrong Answer 2ms 484.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
#define int long long int

void solve()
{
    int n, d; cin>>n>>d;
    int a, b; cin>>a>>b;
    cout<<(d*a)+(n-d)*b<<endl;

}

signed main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int test = 1;
    cin >> test;
    for (int tc = 0; tc < test; ++tc)
    {
        solve();
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1090 Summer trip
Contest
Brain Booster #5
Language
C++17 (G++ 13.2.0)
Submit At
2024-09-05 16:24:48
Judged At
2024-11-11 03:00:43
Judged By
Score
10
Total Time
2ms
Peak Memory
484.0 KiB