欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

201803-2CCF认证考试第一题《跳一跳》python

程序员文章站 2024-03-17 21:52:46
...

201803-2CCF认证考试第一题《跳一跳》python

满分答案

#跳一跳100分程序
sore,boostsore  = 0,2
nums=list(map(int,input().split()))
for i in nums:
    if i == 1:
        sore += 1
        boostsore = 2
    elif i == 2:
        sore = sore + boostsore
        boostsore += 2
print(sore)
  • 测试:
1 1 2 2 2 1 1 2 2 0 
22

201803-2CCF认证考试第一题《跳一跳》python

相关标签: ccf