辣椒味的糖葫芦
辣椒味的糖葫芦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
辣椒味的糖葫芦的博客
全部文章
(共38篇)
题解 | #玛雅人的密码#
def hyx(s: str, index: int):#实现数字互换 x = list(s) x[index], x[index + 1] = x[index + 1], x[index] s = "".join(x) return s def maya(n, ...
2023-03-09
0
317
题解 | #鸡兔同笼#
while True: try: n = int(input()) sum = 0 i, j = 0, 0 min, max = 0, 0 while True: # 对鸡贪心 if s...
2023-03-08
0
281
题解 | #递推数列#
a0, a1, p, q, k = list(map(int, input().split(" "))) sum = 0 an1 = a1 an2 = a0 for i in range(k): an1, an2 = (p * an1 + q * an2) % 10000, an1#斐波那契...
2023-03-07
0
328
题解 | #整除问题#
def jc(n): # 求阶乘 ans = 1 for i in range(1, n + 1): ans *= i return ans num = list(map(int, input().split(" "))) n = num[0] a = ...
2023-03-06
1
433
题解 | #质因数的个数#
def iss(x):#如果这两处不用根号降复杂度的话,会超时 for i in range(2, int(x ** 0.5) + 1): if x % i == 0: return False if x == 1: retur...
2023-03-06
0
344
题解 | #素数判定#
#1不是质数 def iszs(n): for i in range(2, n): if n % i == 0: return False return True n = int(input()) if iszs(n) and n != 1...
2023-03-05
0
346
题解 | #最简真分数#
def gcd(a, b): while b: a, b = b, a % b return a while True: try: n = int(input()) s = input().split(" ") ...
2023-03-05
0
319
题解 | #数制转换#
#本题蕴含思想可用于所有进制转换,即“若任意情况,则以10进制为中介,转10则sum+pow求和,10转则取余并整除” def zs(s): # 字母转数字 return ord(s) - 55 def sz(n): # 数字转字母 return chr(n + 55) ...
2023-03-05
0
352
首页
上一页
1
2
3
4
下一页
末页