1159基础解法(Python) 摘要:解题思路:滑动区间的思想即可注意事项:注意解题的限制参考代码:import sysfor data in sys.stdin : a, b = map(int, data.split()) …… 题解列表 2023年05月27日 0 点赞 0 评论 94 浏览 评分:0.0
偶数求和——python 摘要:解题思路:注意事项:参考代码:while True: try: n,m = map(int,input().split()) L = [i for i in rang…… 题解列表 2023年04月01日 0 点赞 0 评论 95 浏览 评分:0.0
编写题解 1159: 偶数求和 摘要:解题思路:注意事项:参考代码:while True: try: n,m= map(int,input().split()) ls = [2] …… 题解列表 2021年12月22日 0 点赞 0 评论 158 浏览 评分:0.0
[偶数求和]-题解(Python代码) 摘要:```python while True: n,m=map(int,input().split()) a=n//m sn=b=0 for i in range…… 题解列表 2020年04月13日 0 点赞 1 评论 599 浏览 评分:6.0
【偶数求和】-题解(Python代码) 摘要:**代码如下:** while True: n,m=map(int,input().split()) a=2 s=0;t=[];j=…… 题解列表 2019年12月25日 0 点赞 0 评论 1168 浏览 评分:9.9