题解列表

筛选

第n小的质数

摘要:解题思路:注意事项:参考代码:import mathn = int(input())flag = Truet = 0for i in range(2,100000):    flag = True  ……

C语言解自守数

摘要:解题思路:由自守数的概念可知,数的平方对数的位数求余即尾数。注意事项:最后的输出没有空格参考代码:#include <stdio.h> #include <math.h> int main() ……

2836: 数组逆序重放

摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())l = l[::-1]print(" ".join(l))……

2837: 年龄与疾病

摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())a = b = c = d = 0for i in l:    if 0 <= int(……

1099: 校门外的树

摘要:解题思路:使用了列表计数器,来对用到的树进行标记注意事项:参考代码:l,m=map(int,input().strip().split())lis = [i for i in range(l+1)]f……

2840: 向量点积计算

摘要:解题思路:注意事项:参考代码:n = int(input())la = list(map(int,input().split()))lb = list(map(int,input().split())……

2844: 大整数的因子

摘要:解题思路:注意事项:参考代码:flag = Truen = int(input())for i in range(2,10,1):    if n % i == 0:        if flag: ……