题解列表

筛选

模拟兰顿蚂蚁

摘要:解题思路:模拟过程参考代码:```rows, cols = map(int, input().split()) l = [list(map(int, input().split())) for i ……

传染病控制Python题解

摘要:代码参考https://blog.csdn.net/qq_47780707/article/details/122612528n,p=map(int,input().split()) #链接表的第一……

核桃的数量

摘要:解题思路:题目意思就是求他们的最小公倍数注意事项:参考代码:#include<stdio.h>int main(){    int i=1,m,n,k;    scanf("%d%d%d",&m,&n……