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;
  double fp1=(double)A/B, fp2 = (double)C/D;
  int spent=0;
  if(fp1 > fp2){
    spent+=(N/A)*B;
    N%=A;
  }
  else{
    spent+=(N/C)*D;
    N%=C;
  }
  if(N!=0){
    if(((N-1) / C + 1) * D < ((N-1) / A + 1) * B){
      spent+=((N-1) / C + 1) * D;
    }
    else{
      spent+=((N-1) / A + 1) * B;
    }
  }
  
  cout<<spent<<"\n";
  return 0;
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |