/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 344.0 KiB
#2 Wrong Answer 2ms 332.0 KiB
#3 Wrong Answer 2ms 544.0 KiB

Code

#include <iostream>

using namespace std;

int main() {
    int T;
    cin >> T;
    
    for (int t = 0; t < T; ++t) {
        int N, D;
        cin >> N >> D;
        
        long long A, B;
        cin >> A >> B;
        
        // Calculate the total accommodation fee
        long long total_fee = 0;
        
        // Cost for the first D nights
        total_fee += D * A;
        
        // Cost for the remaining (N - D) nights
        if (N > D) {
            total_fee += (N - D) * B;
        }
        
        // Output the total fee for this test case
        cout << total_fee << endl;
    }
    
    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:43:42
Judged At
2024-11-11 03:03:02
Judged By
Score
10
Total Time
2ms
Peak Memory
544.0 KiB