数字整除-题解(Python代码) 摘要:#### 虽然繁琐,但是简单明了,代码呈上!! ```python n = list(input()) num_lis = [] while int(n[0]) != 0: #数据输入 …… 题解列表 2021年01月22日 0 点赞 0 评论 338 浏览 评分:9.9
数字整除-题解(Python代码) 摘要:请指出错误 ```python def ax(a1): a2=a1%10 a1=int(a1/10)-a2*5 if a1>9: return ax…… 题解列表 2019年11月25日 0 点赞 3 评论 955 浏览 评分:9.9
减法出 需要做比较多的判断 摘要:解题思路: 获取最后一位数 获取 除最后一位数,0 - n-1 做减法操作: 减数 长度 小于 三位: & 题解列表 2021年11月17日 0 点赞 0 评论 285 浏览 评分:9.9
调用函数及封装性解题 摘要:解题思路:def f(a): b=(a%10)*5 a=a//10 if (a-b)%17==0: print("1") else:print("0")while…… 题解列表 2024年11月27日 0 点赞 0 评论 111 浏览 评分:9.9
数字整除-题解(Python代码) 摘要:解题思路:搞清楚关系即可原数-个位数的五倍和原数是否同时为17的倍数注意事项:python一定要用//整除,不能用/除参考代码:n = int(input())while n != 0: if …… 题解列表 2020年08月04日 0 点赞 0 评论 563 浏览 评分:9.9
有点浪费时间,不过稳定通过 摘要:参考代码:def fun(n): min_num=int(n[-1]) n=list(n) del n[-1] new_n='' for i in n: …… 题解列表 2023年04月25日 0 点赞 0 评论 154 浏览 评分:9.9
1074基础解法(Python) 摘要:注意事项:sys.stdin会读取到'\n'换行符参考代码:import sysfor line in sys.stdin : if int(line) == 0 : …… 题解列表 2023年01月12日 0 点赞 0 评论 184 浏览 评分:9.9
1074数字整除(无脑四行版) 摘要:提问:直接对17求余可以吗? ```python while True: n = int(input()) if n == 0: break else:print('…… 题解列表 2023年12月06日 0 点赞 0 评论 171 浏览 评分:9.9
编写题解 1074: 数字整除(4行代码直接拿下) 摘要:解题思路:看题:定理:把一个至少两位的正整数的个位数字(n%10)去掉,再从余下的数(n//10)中减去个位数的5倍(n%10*5)。当且仅当差是17的倍数((n//10)-(n%10*5))时,原数…… 题解列表 2021年09月21日 0 点赞 0 评论 572 浏览 评分:9.5
数字整除-题解(Python代码)while循环版,简单易懂 摘要:```python while True: n=int(input()) num=list(map(int,str(n)))##整数转换成列表类型 a=n//10 …… 题解列表 2020年02月27日 0 点赞 0 评论 585 浏览 评分:9.3