/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 2ms 492.0 KiB
#4 Accepted 4ms 772.0 KiB
#5 Accepted 12ms 540.0 KiB
#6 Accepted 123ms 1.324 MiB
#7 Accepted 110ms 1.383 MiB
#8 Accepted 115ms 1.352 MiB
#9 Accepted 115ms 1.328 MiB
#10 Accepted 2ms 452.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
// #define cerr cout
#include "algo/debug.h"
#else
#define deb(...) 30
#endif
#define ll long long
#define all(x) (x).begin(), (x).end()
#define f(i, n) for (int i = 0; i < n; i++)

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int t;
    cin >> t;
    while (t--)
    {
        ll n, d, a, b;
        cin >> n >> d >> a >> b;
        if (n <= d)
            cout << n * a << endl;
        else
            cout << (d * a + (n - d) * b) << endl;
    }

    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 15:32:46
Judged At
2024-09-05 15:32:46
Judged By
Score
100
Total Time
123ms
Peak Memory
1.383 MiB