Zoj problem set-1073 Round and round we go ()

Source: Internet
Author: User

Problem

A cyclic Number is an integer n digits in length which, when multiplied by any integer from 1 to n, yields a �� cycle �� of the digits of the original number. that is, if you consider the number after the last digit to Fig back to the first digit, the sequence of digits in both numbers will be the same, though they may start at different positions.

For example, the number 142857 is cyclic, as partitioned strated by the following table:

Write a program which will determine whether or not numbers are cyclic. the input file is a list of integers from 2 to 60 digits in length. (Note that preceding zeros shocould not be removed, they are considered part of the number and count in determining n. thus, fig is a two-digit number, distinct from Fig is a one-digit number .)

Output

For each input integer, write a line in the output indicating whether or not it is cyclic.

 

Example

Input

142857
142856
142858
01
0588235294117647

Output

142857 is cyclic
142856 is not cyclic
142858 is not cyclic
01 is not cyclic
0588235294117647 is cyclic

/*

Although it is a question of water, the knowledge points of investigation are also very poor. If this number is a loop number, then multiply this number by the length of this number + 1 is a number all 9

*/

#include <iostream>#include <stdio.h>#include <memory>#include <string.h>using namespace std; const int maxn=70;int std_str[maxn];bool search(){}int main () { char str[maxn]; int ans[maxn],res[maxn]; memset(std_str,9,sizeof(std_str)); while ( memset(str,'/0',70),cin>>str) {  int len=strlen(str),i,j;  for ( i=0,j=len-1;i<len;j--,i++)   ans[i]=str[j]-48;  memset(res,0,sizeof(res)) ;  for ( i=0;i<len;i++)   ans[i]*=len+1;  for ( i=0;i<len;i++)  {   if( ans[i]>9)   {    ans[i+1]+=ans[i]/10;    ans[i]%=10;   }  }   int t=1;  for(i=0;i<len;i++)   if(ans[i]!=9){t=0;break;}  if(t)  cout<<str<<" is cyclic/n";  else cout <<str<<" is not cyclic/n" ; } return 0;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.