ICode国际青少年编程竞赛- Python-2级训练场-基础训练3

ICode国际青少年编程竞赛- Python-2级训练场-基础训练3

1、

python 复制代码
d = Item.x - Dev.x
Dev.step(d)

2、

python 复制代码
d = Spaceship.x - Item.x
Spaceship.step(d)

3、

python 复制代码
d = Item.y - Dev.y
Dev.step(d)

4、

python 复制代码
for i in range(4):
    Spaceship.step(2)
    d = Item[i].x - Dev.x
    Dev.step(d)
    Dev.step(-d)

5、

python 复制代码
for i in range(4):
    d = Item[i].y - Dev.y
    Dev.step(d)
    Dev.step(-d)
    Spaceship.step(3)

6、

python 复制代码
for i in range(5):
    Spaceship.step(3)
    d = Dev.y - Item[i].y
    Dev.step(d)
    Dev.step(-d)

7、

python 复制代码
for i in range(4):
    Spaceship.step(3)
    if Spaceship.y < Item[i].y:
        Dev.step(4)
        Dev.step(-4)

8、

python 复制代码
for i in range(6):
    d = Item[3].y - Flyer[i].y
    Flyer[i].step(d)
Dev.step(Item[4].x - Dev.x)

9、

python 复制代码
for i in range(5):
    d = Item[i].x - Flyer[i].x
    if d < 0:
        d = -d
    Flyer[i].step(d)
for i in range(5):
    Dev.step(3)
    Dev.turnRight()
    Dev.step(2)
    Dev.turnLeft()

10、

python 复制代码
for i in range(8):
    d = Item[i].x - Flyer[i].x
    if d < 0:
        d = -d
    Flyer[i].step(d)
for i in range(5):
    Dev.step(3)
    Dev.turnRight()
    Dev.step(2)
    Dev.turnLeft()

11、

python 复制代码
for i in range(5):
    Spaceship.step(3)
    if not Item[i].broken():
        Dev.step(5)
        Dev.step(-5)

12、

python 复制代码
for i in range(4):

    Spaceship.step(3)
    if not Item[i].broken():
        Dev.step(4)
        Dev.step(-4)

13、

python 复制代码
for i in range(6):
    Spaceship.step(2)
    if not Item[i].broken():
        Spaceship.turnLeft()
        Spaceship.step(4)
        Spaceship.turnLeft()
        Spaceship.turnLeft()
        Spaceship.step(4)
        Spaceship.turnLeft()

14、

python 复制代码
for i in range(6):
    Dev.step(3)
    Dev.turnLeft()
    Dev.step(2)
    if not Item[i].broken():
        Dev.step(3)
        Dev.step(-3)
    Dev.turnRight()

15、

python 复制代码
for i in range(8):
    if i < 3 or i > 4:
        Flyer[i].step(3)
Dev.step(Item[3].x - Dev.x)

16、

python 复制代码
for i in range(12):
    if i < 4 or i > 7:
        Flyer[i].step(1)
for i in range(4):
    Dev.step(4)
    Dev.turnRight()
    Dev.step(3)
    Dev.turnLeft()
    Dev.step(2)
    Dev.turnRight()

17、

python 复制代码
for i in range(8):
    if i > 1 and i < 7:
        Flyer[i].step(3)
Dev.step(Item[3].x - Dev.x)

18、

python 复制代码
for i in range(6):
    if i > 1 and i < 5:
        Flyer[i].step(2)
Dev.step(Item.y - Dev.y)

19、

python 复制代码
for i in range(12):
    if 9 > i > 2:
        Flyer[i].step(2)
for i in range(3):
    Dev.step(7)
    Dev.turnRight()

20、

python 复制代码
for i in range(8):
    if 7 > i > 2:
        Flyer[i].step(3)
for i in range(4):
    Dev.step(2)
    Dev.turnRight()
    Dev.step(3)
    Dev.turnLeft()
相关推荐
会员源码网1 小时前
Python中生成器函数与普通函数的区别
python
Java水解2 小时前
Python开发从入门到精通:Web框架Django实战
后端·python
曲幽3 小时前
FastAPI + PostgreSQL 实战:给应用装上“缓存”和“日志”翅膀
redis·python·elasticsearch·postgresql·logging·fastapi·web·es·fastapi-cache
Lupino6 小时前
别再只聊 AI 写代码了:技术负责人要把“变更治理”提到第一优先级
python·docker·容器
Flittly8 小时前
【从零手写 ClaudeCode:learn-claude-code 项目实战笔记】(6)Context Compact (上下文压缩)
python·agent
曲幽18 小时前
FastAPI + PostgreSQL 实战:从入门到不踩坑,一次讲透
python·sql·postgresql·fastapi·web·postgres·db·asyncpg
用户8356290780511 天前
使用 C# 在 Excel 中创建数据透视表
后端·python
码路飞1 天前
FastMCP 实战:一个 .py 文件,给 Claude Code 装上 3 个超实用工具
python·ai编程·mcp
dev派1 天前
AI Agent 系统中的常用 Workflow 模式(2) Evaluator-Optimizer模式
python·langchain
前端付豪1 天前
AI 数学辅导老师项目构想和初始化
前端·后端·python