CSP 202112-1 序列查询 python

Posted 风信子的猫Redamancy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSP 202112-1 序列查询 python相关的知识,希望对你有一定的参考价值。

CSP 202112-1 序列查询 python

题目描述




思路

其实这道题,我觉得提示给的非常清楚了,这个提示啊,直接送分了哈哈哈,所以我们只要根据提示,利用乘法运算,计算就可以得到结果

代码

# http://118.190.20.162/view.page?gpid=T138
n,N = map(int,input().split())
a = list(map(int,input().split()))
s = 0
for i in range(1,n):
    s += (a[i] - a[i-1]) * i
s += (N - a[n-1])*n
print(s)

以上是关于CSP 202112-1 序列查询 python的主要内容,如果未能解决你的问题,请参考以下文章

CCF202112-1 序列查询(100分)序列处理

CSP 202112-2 序列查询新解 python 离散+二分法

CCF-CSP 202112-2 序列查询新解子区间

CCF-CSP 202112-2 序列查询新解子区间

CSP 202009-1 称检测点查询 python

csp-s模拟测试52平均数,序列题解