若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。


  • 运维

  • 前端

  • 编程

  • 随笔

  • hust-oj

1133: Problem D: Power Strings

发表于 2017-10-06   |   分类于 HUSTOJ   |   阅读次数 1,333

题目描述

Problem D: Power Strings
Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcdef". If we think of concatenation as multiplication, exponentiation by a non-negative integer is defined in the normal way: a^0 = "" (the empty string) and a^(n+1) = a*(a^n).
Each test case is a line of input representing s, a string of printable characters. For each s you should print the largest n such that s = a^n for some string a. The length of s will be at least 1 and will not exceed 1 million characters. A line containing a period follows the last test case.

输入

暂无

输出

暂无

样例输入

abcd
aaaa
ababab
.

样例输出

1
4
3

参考代码

#include <stdio.h>
main() 
{
    int n,i,sum;
    while (1 == scanf("%d",&n) && n) 
    {
        sum = n;
        for (i=2;i*i <= n;i++) 
        {
            if (n%i == 0) 
            {
                sum -= sum/i;
            }
            while (n%i == 0) n /= i;
        }
        if (n > 1) sum -= sum/n;
        printf("%dn",sum);
   }
}

解析

暂无

hustoj

发表评论 取消回复

电子邮件地址不会被公开。 必填项已用*标注

*
*


hoxis wechat
著作权归作者所有
站点更新说明
  • 文章目录
  • 站点概览
若是凉夜已成梦

若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。

1904 日志
6 分类
12 标签
RSS
weibo github twitter facebook

友情链接

Skip 原站点 Dreams孤独患者
© 2017 若是凉夜已成梦
Powered by WordPress | 已运行
Theme By NexT.Mist