919B Codeforces - Perfect Number


919B Codeforces - Perfect Number




Solution in C++

#include <bits/stdc++.h>

using namespace std;

#define pii pair<int,int>
typedef long long int lli;

int n,sol=10,cnt,cpy;

int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    cin>>n;
    while(n--)
    {
        sol+=9;
        cpy=sol;
        cnt=0;
        while(cpy)
            cnt+=cpy%10,
            cpy/=10;
        if(cnt!=10)n++;
    }
    cout<<sol;
    return 0;
}

Share on Google Plus

About Mohamed Sobhi

My name is Mo.Sobhy ,I study at School excelling high school in Ain Shams ,Cairo
My hobbies is programming ,and web development ,playing chess and writing horror stories.
    Blogger Comment
    Facebook Comment

0 التعليقات:

إرسال تعليق