UVA 10127 - Ones(数论)
Posted llguanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA 10127 - Ones(数论)相关的知识,希望对你有一定的参考价值。
UVA 10127 - Ones
题意:求出多少个1组成的数字能整除n
思路:一位位去取模。记录答案就可以
代码:
#include <stdio.h>
#include <string.h>
int n;
int main() {
while (~scanf("%d", &n)) {
int ans = 1;
int now = 1;
while (now) {
now = (now * 10 + 1) % n;
ans++;
}
printf("%d\n", ans);
}
return 0;
}
以上是关于UVA 10127 - Ones(数论)的主要内容,如果未能解决你的问题,请参考以下文章
UVA 12063 Zeros and Ones(三维dp)
UVA 11728 - Alternate Task (数论)