题解 1159: 偶数求和

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1159基础解法(Python)

摘要:解题思路:滑动区间的思想即可注意事项:注意解题的限制参考代码:import sysfor data in sys.stdin :    a, b = map(int, data.split())   ……

偶数求和——python

摘要:解题思路:注意事项:参考代码:while True:    try:        n,m = map(int,input().split())        L = [i for i in rang……

编写题解 1159: 偶数求和

摘要:解题思路:注意事项:参考代码:while True:     try:         n,m= map(int,input().split())         ls = [2]      ……