/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 0ms 320.0 KiB
#2 Accepted 0ms 320.0 KiB
#3 Accepted 0ms 516.0 KiB
#4 Accepted 1ms 284.0 KiB
#5 Accepted 5ms 464.0 KiB
#6 Accepted 46ms 1.125 MiB
#7 Accepted 44ms 1.223 MiB
#8 Accepted 45ms 1.523 MiB
#9 Accepted 44ms 1.129 MiB
#10 Accepted 0ms 516.0 KiB

Code

#include <stdio.h>
int main(){
int T;
scanf("%d",&T);

while (T--) {
        int N, D;  
        int A, B;
        scanf("%d %d", &N, &D);
        scanf("%d %d", &A, &B);

        long long total_cost;
        if (N <= D) {
        total_cost = (long long)N * A;
        }
        else {
        total_cost = (long long)D * A + (long long)(N - D) * B;
        }
        printf("%lld\n", total_cost);
}

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1090 Summer trip
Contest
Brain Booster #5
Language
C99 (GCC 13.2.0)
Submit At
2024-09-05 16:15:07
Judged At
2024-10-03 13:08:24
Judged By
Score
100
Total Time
46ms
Peak Memory
1.523 MiB