题解 1268: 第K极值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

第K极值(python)

摘要:解题思路:注意事项:参考代码:def is_prime(num):    if num <= 1:        return False    for i in range(2, int(num *……

编写题解 1268: P1001(python代码)

摘要:解题思路:注意事项:参考代码:def isprime(x):     ls=[1,3,7,9]     lis=[2,3,5,7]     if x <1:         return 0 ……