moonlight


私信TA

用户名:dotcpp0738970

访问量:4895

签 名:

越学越菜

等  级
排  名 354
经  验 5298
参赛次数 0
文章发表 141
年  龄 21
在职情况 学生
学  校 江门职业技术学院
专  业 大数据分析

  自我简介:

参考代码:

k = int(input())
arr = map(int, input().split())
one, five, ten = 0, 0, 0
for i in arr:
    if i == 1:
        one += 1
    elif i == 5:
        five += 1
    elif i == 10:
        ten += 1
print("%.d\n%.d\n%.d" %(one, five, ten))


 

0.0分

1 人评分

  评论区

改进版:
k = int(input())
arr = list(map(int, input().split()))
print("%.d\n%.d\n%.d" %(arr.count(1), arr.count(5), arr.count(10)))
2024-03-12 20:37:24
  • «
  • 1
  • »