若是凉夜已成梦

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


  • 运维

  • 前端

  • 编程

  • 随笔

  • hust-oj

1529: Ones

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

题目描述

Given any integer 0 <= n <= 10000 not divisible by 2 or 5, some multiple of n is a number which in decimal notation is a sequence of 1's. How many digits are in the smallest such a multiple of n?

输入

A file of integers at one integer per line.

输出

Each output line gives the smallest integer x > 0 such that p = 1 x 10i, where a is the corresponding input integer, p = a x b, and b is an integer greater than zero.

样例输入

3
7
9901


样例输出

3
6
12

参考代码

#include <stdio.h>
int main() 
{
    int n,ones,m;
    while(1==scanf("%d",&n)) 
    {
        ones=1;
        m=1;
        m%=n;
        while(m) 
        {
            ones++;
            m=(m*10+1)%n;
        }
        printf("%dn",ones);
}
   return 0;
}

解析

暂无

hustoj

发表评论 取消回复

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

*
*


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

若是凉夜已成梦

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

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

友情链接

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