herofly


私信TA

用户名:pyhero

访问量:16609

签 名:

等  级
排  名 33
经  验 14299
参赛次数 17
文章发表 321
年  龄 0
在职情况 待业
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

while True:
    ls=list(map(int,input().split()))
    if ls[0]==0:
        break
    s=0
    for i in ls[1:]:
        m=i
        s+=m//100
        m=m%100
        s+=m//50
        m=m%50
        s+=m//10 
        m=m%10 
        s+=m//5
        m=m%5
        s+=m//2
        s+=m%2
    print(s)


 

0.0分

1 人评分

  评论区

  • «
  • »