我正在尝试使用Python 2.7.9解决CodeChef上的问题 我尝试提交解决方案时遇到运行时错误(NZEC),尽管代码在在线CodeChef IDE中按预期运行。我是python的初学者,我正在使用以下代码:
# cook your code here
p=input()
k=[]
for x in range(0,p):
k.append(input())
l=[]
f=int(p-1)
print f
for x in range(0,f):
lnum=k[x]+k[x+1]
l.append(lnum)
for w in range(0,f):
print l[w],
示例输入:
5
1
4
2
6
7
示例输出:
5 6 8 13
可以找到CodeChef问题here。