Codeforces 898B - Proper Nutrition Solution

Explain:link

 Solution in C++: 

///**********ALLAH IS ALMIGHTY************///

///AH Tonmoy

///Department of CSE,23rd batch

///Islamic University,Bangladesh  

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. int n,a,b,i,x,y;
  6. cin>>n>>a>>b;
  7. for(i=0;i*a<=n;i++)
  8. {
  9. if((n-i*a)%b==0)
  10. {
  11. x=i;
  12. y=(n-i*a)/b;
  13. cout<<"YES"<<endl;
  14. cout<<x<<" "<<y<<endl;
  15. return 0;
  16. }
  17. }
  18. cout<<"NO"<<endl;
  19. }

No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.