题解列表
2298: 蓝桥杯2018年第九届真题-防御力
摘要:```python
def cmp(x):return x[1]
n1,n2 = map(int, input().split())
a = list(map(int,input().split……
3158: 蓝桥杯2023年第十四届省赛真题-三国游戏
摘要:```python
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split())……
编写题解 2879: 错误探测
摘要:解题思路:注意事项:参考代码:m=int(input())aList=[]flag1=1myList=[list(map(int,input().split())) for t in range(m)……
1073: 弟弟的作业
摘要:```python
score = 0
while True:
try:
user = input().split("=")
if user[1] =……
1074: 数字整除
摘要:```python
n = int(input()) #初始值
while n!=0: #n = 0 时停止
lest = n//10
if (lest-(n%10)……