26 February 2018

UVA 11687 11687 - Digits

/***
Md. Nazmul Hasan
Shahjalal University of Science & Technology,Sylhet.
hasan08sust@gmail.com
***/
#include<iostream>
#include<cstdio>
#include<stack>
#include<queue>
#include<map>
#include<vector>
#include<algorithm>
#include<cstring>
#include<string>
#include<sstream>
#include<cmath>
#include <iomanip>
using namespace std ;
typedef long long ll ;
typedef int in ;
typedef unsigned long long ull ;
const double pi = 2*acos(0) ;
#define maxi 40000
#define pf printf
#define sc scanf
#define pb push_back
#define MEM(x,y) (memset((x),(y),sizeof(x)))
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#define MAX(x,y) ((x) > (y) ? (x) : (y))
#define load(array,size)  for(int i=0 ; i<size ; i++) cin>>array[i]  ;
#define new_line  pf("\n")
#define clear_data(array) memset(array,0,sizeof(array))
#define highest_int 2147483647

int main()
{
   string str, str1 ;
   int prev,x,ln1;
   while(cin>>str)
   {
       if(str == "END")
        break;
       int ln = str.size();
       x = ln;
       if(ln==1 && str[0]=='1')
       {
           pf("1\n");
           continue;
       }
       int cnt =1 ;
       while(true)
       {
           str1 = to_string(x);
           ln1 = str1.size();
           if(ln1 == x)
           {
               pf("%d\n",cnt+1);
               break;
           }
           x = ln1 ;
           cnt++;
       }
   }
    return 0;
}


No comments:

Post a Comment

UVA 10679 - I Love Strings!!