This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,a,b,c,d;
cin>>n>>a>>b>>c>>d;
int c1, c2 ,c3 ,c4;
c1=((n-1)/a+1)*b;
c3=((n-1)/c+1)*d;
c2=(n/a)*b+(((n%a)-1)/c+1)*d;
c4=(n/c)*d+(((n%c)-1)/a+1)*b;
cout<<min(c1, min(c2, min(c3, c4)))<<"\n";
return 0;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |