题解列表
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)……
1063: 二级C语言-统计字符
摘要:```python
ss = input()
# 英文字母、空格、数字和其它字符
alpha,space,num,other=0,0,0,0
for i in ss:
if i.is……
1062: 二级C语言-公约公倍
摘要:```python
c=list(map(int,input().split()))
if(len(c))……
1061: 二级C语言-计负均正
摘要:```python
li = list(map(int,input().split()))
li1 = list(map(int,input().split())) #题中示例是两行输入
li……
1054: 二级C语言-计算素数和
摘要:```python
m,n = map(int,input().split())
if m > n:
m,n = n,m #题中要求 m……