码迷,mamicode.com
首页 > 其他好文 > 详细

PAT (Advanced Level) 1019. General Palindromic Number (20)

时间:2016-05-16 21:40:27      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

简单题。

#include<iostream>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<cstdio>
#include<queue>
#include<vector>
using namespace std;

int s[10000],tot;
int n,b;

bool check()
{
    for(int i=0; i<=tot/2; i++)
    {
        if(s[i]!=s[tot-i-1]) return 0;
    }
    return 1;
}

int main()
{
    scanf("%d%d",&n,&b);
    if(n==0)
    {
        printf("Yes\n");
        printf("0\n");
    }
    else
    {
        tot=0;
        while(n) s[tot++]=n%b,n=n/b;
        if(check()) printf("Yes\n");
        else printf("No\n");
        for(int i=tot-1; i>=0; i--)
        {
            printf("%d",s[i]);
            if(i>0) printf(" ");
            else printf("\n");
        }
    }
    return 0;
}

 

PAT (Advanced Level) 1019. General Palindromic Number (20)

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/5499348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!