题解列表

筛选

无聊的星期六

摘要:解题思路:注意事项:参考代码:slen=int(input()) print(sum(int(input()) for i in range(slen))//slen)……

Python 模拟解决[100分]

摘要:解题思路:模拟法注意事项:参考代码: n = int(input()) nums = list(map(int,input().split())) res = 0 def add_(n……

砍 柴

摘要:解题思路:注意事项:参考代码:import mathdef get_primes(max_val):   v = [True] * (max_val + 1)   for x in range(2, ……

挖 矿

摘要:解题思路:注意事项:参考代码:N = int(2e6 + 10)n, m = map(int, input().split())a = list(map(int, input().split()))l……

封闭图形个数

摘要:解题思路:注意事项:参考代码:class number:   def __init__(self, v, c):       self.v = v       self.c = c   def __l……

数字诗意-找规律

摘要:解题思路:注意事项:参考代码:import mathn=int(input())nums = list(map(int,input().split()))ans = 0for i in nums:  ……

超简洁代码,结构体之成绩记录

摘要:解题思路:注意事项:参考代码:n = int(input()) # 定义一个空二维列表,用以存放输入数据 my_str = [[]] * n # 输入指定n组数据 for i in range……

简单易懂,结构体之时间设计

摘要:解题思路:平年2月28天,闰年2月29天,平年闰年分开考虑注意事项: 无参考代码:y, m, d = map(int, input().split()) day_num = d year1 = [……

简单方法,不涉及函数内容

摘要:解题思路:注意事项:参考代码:n = int(input()) m = 0 k = [None] * 3 my_list = [list(map(int, input().strip().spl……

暴力解法,二维数组的转置

摘要:解题思路: 对于一个二维列表,转置即行列序数互换注意事项: 注意输入、输出格式参考代码:# 保证输入格式正确 my_list1 = list(map(int, input().strip().spl……