题解列表

筛选

枚举法,简单暴力好理解(小白题解)

摘要:解题思路:枚举每一天判断这一天是否符合要求注意事项:10000101 ≤ N ≤ 89991231我们的判断就得是八位数的最大 年份最大为9999参考代码:#include<bits/stdc++.h……

程序员爬楼梯——递归

摘要:解题思路:注意事项:参考代码:def pa(n):    if n == 1 or n == 2:        return 1    elif n == 3:        return 2   ……

区间中最大的数

摘要:解题思路:注意事项:参考代码:n = int(input())L = list(map(int,input().split()))m = int(input())for i in range(m): ……

与2无关的数——python

摘要:解题思路:注意事项:参考代码:def bxg(n):    if &#39;2&#39; in str(n) or n%2 == 0:        return 0    else:        ……

谁是你的潜在朋友

摘要:解题思路:注意事项:参考代码:while True:    try:        n,m = map(int,input().split())        L = [int(input()) fo……