题目大意:给出n,问说者少要多少为1才干够整除n。
解题思路:等于是高精度取模,直到余数为0为止。
#include <cstdio>
#include <cstring>
int main () {
int n;
while (scanf("%d", &n) == 1) {
int ans = 1, c = 1;
while (c) {
c = (c * 10 + 1) % n;
ans++;
}
printf("%d\n", ans);
}
return 0;
}
题目大意:给出n,问说者少要多少为1才干够整除n。
解题思路:等于是高精度取模,直到余数为0为止。
#include <cstdio>
#include <cstring>
int main () {
int n;
while (scanf("%d", &n) == 1) {
int ans = 1, c = 1;
while (c) {
c = (c * 10 + 1) % n;
ans++;
}
printf("%d\n", ans);
}
return 0;
}
下一篇:rcp命令
题意:有n个人投色子,并给出了一件情况的成功概率,从第一个人开始投色子,到最后一个人
题意:给一个字符串,把它的所有回文串按字典序排序,然后给了个n,要求输出第n个回
题意:有n个骰子,给出一个目标值x,求出得
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M