蓝桥杯2014年第五届真题-兰顿蚂蚁 (Python代码) 摘要:# python3.6实现 本地测试了几组数据都过了,不知道哪里出了错误提示**答案错误!** 看代码,**有注释**! **具体思想:**就是把蚂蚁当作一个对象,通过更换蚂蚁的位置与头部完成运…… 题解列表 2019年12月20日 0 点赞 2 评论 1647 浏览 评分:9.9
蓝桥杯2014年第五届真题-兰顿蚂蚁 (Python代码)python开荒柘 摘要:直接上代码,AC(太不容易了,调了半天) ```python def turn_and_move(p,d): global L,direction k=direction.index(d)…… 题解列表 2020年01月02日 0 点赞 0 评论 550 浏览 评分:6.0
蓝桥杯2014年第五届真题-兰顿蚂蚁-Python输入有大坑,WA者看过来(Python代码) 摘要:# 警告:Python输入有大坑 >题目输入的分隔空格是有问题的,带参的split不能按预期分割参数 使用split函数时不要添加任何分割参数,否则答案错误(MDZZ)。 其他语言请无视 …… 题解列表 2020年01月21日 0 点赞 1 评论 3814 浏览 评分:9.1
蓝桥杯2014年第五届真题-兰顿蚂蚁-题解(Python代码) 摘要:菜鸟级写法,简单易懂,欢迎借鉴。 代码如下: ```python row,line=map(int,input().split()) map_li = [list(map(int,input(…… 题解列表 2020年02月16日 0 点赞 0 评论 568 浏览 评分:9.9
蓝桥杯2014年第五届真题-兰顿蚂蚁-题解(Python代码) 摘要:```python m,n = map(int,input().split()) lst = [] for i in range(m): lst.append(list(map(int…… 题解列表 2020年03月03日 0 点赞 0 评论 618 浏览 评分:9.9
1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁(Python3)简单模拟 摘要:解题思路:注意事项:参考代码:row, col = map(int, input().split()) map_ = [list(map(int, input().split()))[:col] f…… 题解列表 2021年03月24日 0 点赞 0 评论 202 浏览 评分:9.9
兰顿蚂蚁 Python直接思路 摘要:解题思路:注意事项:参考代码:def white(mapList, x, y, direction, steps): mapList[x][y] = 1 if direction …… 题解列表 2021年04月03日 0 点赞 0 评论 483 浏览 评分:9.9
兰顿蚂蚁 python 思路太明显了,刷题题解留注吧: 摘要:解题思路:注意事项:参考代码:m,n=map(int,input().split())mat=[]for i in range(m): li=list(map(int,input().split(…… 题解列表 2022年01月22日 0 点赞 0 评论 121 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁 摘要:m,n = map(int,input().strip().split())a = [list(map(int,input().strip().split())) for i in range(m)]…… 题解列表 2022年02月28日 0 点赞 0 评论 133 浏览 评分:0.0
python求解方法 摘要:解题思路:注意事项:参考代码:#完整版a,b=map(int,input().split())maps=[[0 for j in range(b)]for i in range(a)]for i in…… 题解列表 2022年03月03日 0 点赞 0 评论 150 浏览 评分:0.0