hdu-oj 1013 Digital Roots

来源:互联网 发布:淘宝买家秀合集 编辑:程序博客网 时间:2024/05/19 19:57

Digital Roots

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 48266    Accepted Submission(s): 15000


Problem Description
The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting value contains two or more digits, those digits are summed and the process is repeated. This is continued as long as necessary to obtain a single digit.

For example, consider the positive integer 24. Adding the 2 and the 4 yields a value of 6. Since 6 is a single digit, 6 is the digital root of 24. Now consider the positive integer 39. Adding the 3 and the 9 yields 12. Since 12 is not a single digit, the process must be repeated. Adding the 1 and the 2 yeilds 3, a single digit and also the digital root of 39.
Input
The input file will contain a list of positive integers, one per line. The end of the input will be indicated by an integer value of zero.
Output
For each integer in the input, output its digital root on a separate line of the output.
Sample Input
24390
 

Sample Output
63
 题目大意:大数分解各位相加,如果结果大于10,则将所得和继续分解相加,直至小于10;输出结果。

问题分析:因为不会有正数各位之和为0,所以只会有1-9这9个根。

假设,数d的根为d%9!!!!!!!!(不取0,整除时取9)

首先,1-9这9个数成立
假定,d的根为d%9,则d+1的根为d的根+1,即d%9+1=(d+1)%9.
得证。

第二步详细一点的说明:
d表示为a1a2a3a4...aN,d+1表示为a1a2a3a4...(aN+1)
d+1与a1a2a3a4...aN+1同根,即d%9+1。

考虑大数的情况,需要做一次处理,程序简单如下:

 

#include <stdio.h>char s[10000];int main() {    char *p;     int d;    while (scanf("%s", s) > 0)  {        p = s;        d = 0;        while (*p) {       //对于大数,直接求一次各位的和。            d += *p - '0';            ++p;        }        if (d == 0) break; //输入0,退出。        d %= 9;        if (d == 0) d = 9; //整除取9.        printf("%d\n", d);    }    return 0;}


附另一简单易懂代码:

<span style="font-size:12px;color:#000000;">#include <stdio.h>#include <string.h>int fenjie(int num){    int sum=0;    while(num>=10)    { sum+=num%10;      num/=10;    }    sum+=num;      return sum;}int main(){    char sum[1010];while(gets(sum)&&sum[0]!='0'){int i,x=0;for(i=0;i<strlen(sum);i++){x += sum[i] - '0';}while(x>=10){x = fenjie(x);}printf("%d\n",x);}    return 0;}</span>



 

0 0