Palindrome Numbers(LA2889)第n个回文数是?



J - Palindrome Numbers

Time Limit:3000MS     Memory
Limit:
0KB     64bit IO Format:%lld & %llu

Submit Status Practice UVALive
2889

WA了一版面,我也是醉了,就因为一个编译环境不同。。。。。。

说多了都是泪。

题目链接:请点击UVALive
2889

转载请注明出处:寻找&星空の孩子

#include<stdio.h>
#define LL long long
#define MM 2000000000
LL num[25]= {0};
LL ppow(LL x,LL y)
{
    LL tp=1;
    while(y--)
    {
        tp*=x;
    }
    return tp;
}

void init()
{
    LL tp=9,i;
    for(i=1;;)
    {
        num[i]=num[i-1]+tp;
        i++;//同行有多个i要处理的时候i,不要把i++放里面,因为变异环境不同;运算顺序不同,可能会wa
        num[i]=num[i-1]+tp;
        i++;
        tp=tp*10;
        if(num[i-1]>=MM)break;
    }

    /* for(int i=1;i<21;i++)
    {
    	LL p=(i+1)/2-1;
    	num[i]=num[i-1]+9*ppow(10,p);
    //		printf("%lld\n",num[i]);
    }
    //	printf("%lld\n",num[0]);*/
}

int main()
{
    init();
    LL n;
    LL a[20];
    while(scanf("%lld",&n),n)
    {
        int len=0;
        for(int i=1; i<=20; i++)
        {
            if(n<=num[i])
            {
                len=i;
                break;
            }
        }
        //      printf("len=%d\n",len);
        LL m=n-num[len-1];
        int l=(len+1)/2;
//       printf("m=%lld\tl=%d\n",m,l);
        LL ans=ppow(10,l-1)+m-1;
//       printf("ans=%lld\tppow=%lld\n",ans,ppow(10,l-1));
        printf("%lld",ans);
        if(len&1) ans/=10;
        while(ans)
        {
            printf("%lld",ans%10);
            ans/=10;
        }
        printf("\n");
    }
    return 0;
}
时间: 2024-11-13 22:34:26

Palindrome Numbers(LA2889)第n个回文数是?的相关文章

leetcode 9 Palindrome Number 回文数

Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to string, note the restriction of using ext

LeetCode 9 Palindrome Number (回文数)

翻译 确定一个整数是否是回文数.不能使用额外的空间. 一些提示: 负数能不能是回文数呢?(比如,-1) 如果你想将整数转换成字符串,但要注意限制使用额外的空间. 你也可以考虑翻转一个整数. 然而,如果你已经解决了问题"翻转整数(译者注:LeetCode 第七题), 那么你应该知道翻转的整数可能会造成溢出. 你将如何处理这种情况? 这是一个解决该问题更通用的方法. 原文 Determine whether an integer is a palindrome. Do this without ex

Palindrome Number (回文数)

回文数是指这样的数字:正读和倒读都是一样的.如:595,2332都是回文数,234不是回文数. 注意:负数不是回文数 Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to string

9. 回文数 Palindrome Number

Determine whether an integer is a palindrome. Do this without extra space. 题意:判断一个数字是否为回文数 如何取得一个Integer的最高位?假设x = 688答:x / mask. 设置一个和x位数一样的mask,mask = 100,然后用x/mask,表示x里面有几个mask,即是最高位数字. 688里有6个100,即为6. 如何删去一个Integer的最高位?假设x = 688答:x = x % mask. 还是

LeetCode:Palindrome Number - 回文数

1.题目名称 Palindrome Number(回文数) 2.题目地址 https://leetcode.com/problems/palindrome-number 3.题目内容 英文:Determine whether an integer is a palindrome. Do this without extra space. 中文:确认一个整数是否是回文数 4.解题方法1 将数字翻转后判断与原数字是否相等,可以参考LeetCode第7题(Reverse Integer)的解题思路.J

LeetCode Problem 9:Palindrome Number回文数

描述:Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to string, note the restriction of using extra space. You could a

leetcode4 Valid Palindrome回文数

Valid Palindrome回文数 [email protected] Question: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example, "A man, a plan, a canal: Panama" is a palindrome. "race a car" i

Leetcode——3 Palindrome Number(回文数)

Problem: Determine whether an integer is a palindrome. Do this without extra space. 简单的回文数,大一肯定有要求写过,不过从基础开始尝试吧. Solution: public class Solution { public boolean isPalindrome(int x) { int n=1; int copyx=x; if(x<0)return false; if(x<10)return true; w

(LeetCode)Palindrome Number -- 判断回文数

Determine whether an integer is a palindrome. Do this without extra space. 解题分析: 题目很简单,但是对于要求需要看清楚. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to string, note the restriction of using ex

判断一个整数是否为回文数 Check if a number is palindrome

一种方法是先翻转当前数,然后把它和原数比较(略) 另一种是递归方法,借用一个复制数,对原数递归,使之翻转,然后配合复制数比较 package recursion; public class Check_if_a_number_is_palindrome { public static void main(String[] args) { int num = 121321; System.out.println(check(num)); num = 12321; System.out.printl