思路: 运用快速幂。 代码: 总结: 需要防止溢出。 a^b 求个位的数字 中需要除以10,至于其他题目看题目要求。 每个数都除以10是为了防止溢出 这里的mod个人理解为是大部分按照题目要求需要除以的数,为了防止溢出。 ...
分类:
Web程序 时间:
2019-07-17 23:08:30
阅读次数:
149
正则表达式 定义:用定义好的字符的组合,组成一个规定字符串,用来表达对字符串的一种过滤规则 正则字符: \w(word)匹配字母或数字或下划线; \s(space)匹配任意的空白字符; \d(digit)匹配数字 \W 匹配非字母或数字或下划线 \D 匹配非数字 \S 匹配非空白字符 \n 匹配一个 ...
分类:
其他好文 时间:
2019-07-17 18:47:01
阅读次数:
105
FJ and his cows enjoy playing a mental game. They write down the numbers from 1 to N (1 <= N <= 10) in a certain order and then sum adjacent numbers t ...
分类:
其他好文 时间:
2019-07-16 18:53:20
阅读次数:
114
-->Backward Digit Sums 直接写中文了 Descriptions: FJ 和 他的奶牛们在玩一个心理游戏。他们以某种方式写下1至N的数字(1<=N<=10)。 然后把相邻的数相加的到新的一行数。重复这一操作直至只剩一个数字。比如下面是N=4时的一种例子 3 1 2 4 4 3 6 ...
分类:
其他好文 时间:
2019-07-15 22:44:01
阅读次数:
123
#格式化输出 %占位符,s字符串 d digit数字 %%只是单纯的显示%#while else 当while循环被break打断,就不会执生else的结果# % s d# name = input('请输入姓名')# age = input('请输入年龄')# height=input('请输入身... ...
分类:
编程语言 时间:
2019-07-13 20:18:02
阅读次数:
133
题目做不出 看答案:参考文献 https://www.xuebuyuan.com/1394116.html https://blog.csdn.net/orangesix/article/details/44190501(在下面的8/2还是什么 只要因子2的数量还有 都不会尾数绝对不会是奇数) ht ...
分类:
其他好文 时间:
2019-07-08 12:06:08
阅读次数:
95
原题链接: "Chef and Digit Jumps" 题意:原题中有链接。 题解:一道很明显的bfs题,就是跳就可以了,当然,跳的时候可以加一些优化,具体看代码 ...
分类:
其他好文 时间:
2019-07-06 00:55:51
阅读次数:
137
占位符% %s (str类型占位) %d(digit,int类型占位) 案例: name = input('请输入您的姓名:') age = input('您的年龄:') job = input('您的工作:') hobbie = input('您的爱好:') mag = ''' info of % ...
分类:
编程语言 时间:
2019-07-03 22:54:51
阅读次数:
282
The ministers of the cabinet were quite upset by the message from the Chief of Security stating that they would all have to change the four-digit room ...
分类:
其他好文 时间:
2019-06-27 21:49:10
阅读次数:
145
题目描述 Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than or equal to n. 题目大意 计算[0, n]之间的数字中包含多少1 。 ...
分类:
其他好文 时间:
2019-06-27 20:38:30
阅读次数:
152