ZOJ Problem Set – 1073 Round and Round We Go()

來源:互聯網
上載者: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 ��wrap around�� 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 illustrated 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 should not be removed, they are considered part of the number and count in determining n. Thus, ��01�� is a two-digit number, distinct from ��1�� which 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 

/*

雖說是水題,但是考察的知識點也是很坑爹的,這個數如果是迴圈數則這個數乘以這個數的長度+1 是一個各位全是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;}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.