首页 > 21781 牛兄牛弟 返回结果为0
头像
今天天气真好嘻嘻嘻
编辑于 2021-01-23 12:20
+ 关注

21781 牛兄牛弟 返回结果为0


n, d = list(map(int, input().split()))
a = list(map(int, input().split()))

ans = []
ans.append(a[0])
res = []
res.append(a[0])
for i in range(1, n):
    ans.append(a[i])
    ans.sort()
    for j in range(len(ans)-1):
        if ans[j+1]-ans[j]<d:
            res.append(max(res)+d)
            break
    else:
        res.append(a[i])
        
for i in res:
    print(i, end=" ")


这道题 ,  一直显示返回结果为0,但是错误信息提示确是在输入的n, d = map(int,input().split()) ValueError: not enough values to unpack (expected 2, got 1),很奇怪,检查了快一上午感觉自己的代码没有问题, 有无大佬可解答一下?

全部评论

(3) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐