python编写题解 2793: 点和正方形的关系 摘要:解题思路:求x,y的区间注意事项:判断一个给定的点是否在这个正方形内参考代码:x, y = map(int, input().split()) if x >= -1 and x <= 1 and y…… 题解列表 2024年03月07日 0 点赞 0 评论 877 浏览 评分:0.0
2793: 点和正方形的关系 摘要:解题思路:注意事项:参考代码:x,y = map(int,input().strip().split())if (x > 1 or x < -1) or (y > 1 or y < -1): p…… 题解列表 2022年12月09日 0 点赞 0 评论 678 浏览 评分:9.9
数学思维处理 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if (a**2+b**2)**0.5<=2**0.5:pr…… 题解列表 2026年03月12日 1 点赞 0 评论 30 浏览 评分:10.0