Vjudge 4.12 省赛训练 B. Sum of Digits

B. Sum of Digits
time limit per test
2 seconds
memory limit per test
265 megabytes
input
standard input
output
standard output

Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came across a number n. How many times can Gerald put a spell on it until the number becomes one-digit?

Input

The first line contains the only integer n (0 ≤ n ≤ 10100000). It is guaranteed that n doesn't contain any leading zeroes.

Output

Print the number of times a number can be replaced by the sum of its digits until it only contains one digit.

Examples
input
Copy
0
output
Copy
0
input
Copy
10
output
Copy
1
input
Copy
991
output
Copy
3
Note

In the first sample the number already is one-digit — Herald can't cast a spell.

The second test contains number 10. After one casting of a spell it becomes 1, and here the process is completed. Thus, Gerald can only cast the spell once.

The third test contains number 991. As one casts a spell the following transformations take place: 991 → 19 → 10 → 1. After three transformations the number becomes one-digit.


emmmm,这道题其实蛮简单

就是自己做的时候看到10的10万次就懵了

gets输入,int记录,在未成一个数字前不断循环。

特判 <10 的数


#include <iostream>
#include <cstdio>
#include <string.h>
#include <cstring>
using namespace std;
char a[1000002];

int main()
{

	while(gets(a))
	{
		
		int l=strlen(a);
		if(l==1) 
		{
			cout<<"0"<<endl;
			continue;
		}
		long long int n=0;
		for(int i=0;i<l;i++)
		{
			n=n+a[i]-'0';
		}

		int totol=1;
		while(n>=10)
		{
			int l=0;
			int k=n;
			for(int i=1;;i++)
			{
				if(k/10==0) {l++;break;}
				else 
				{
					k=k/10;
					l++;
				}
			}
			int sum=0;
			int kk=n;
			for(int i=1;i<=l;i++)
			{
				sum+=kk%10;
				kk=kk/10;
			}
			n=sum;
			totol++;
		}
		cout<<totol<<endl;
	}
	return 0;
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值