NP83. 错误出现的次数
描述
输入描述
输入一行数组序列,数字只包含0和1,以空格间隔。输出描述
输出0出现的次数。示例1
输入:
1 0 0 0 1 0 1
输出:
4
Python 3 解法, 执行用时: 31ms, 内存消耗: 4600KB, 提交时间: 2022-07-27
a=input().split(' ') sum=a.count('0') print(sum)
Python 3 解法, 执行用时: 32ms, 内存消耗: 4508KB, 提交时间: 2022-08-02
success = 0 false = 0 num = input() num_list = list(map(int,num.split(' '))) for i in num_list: if i == 1: success += 1 elif i == 0: false += 1 print(false)
Python 3 解法, 执行用时: 32ms, 内存消耗: 4516KB, 提交时间: 2022-07-29
l = list(map(int, input().split())) print(l.count(0))
Python 3 解法, 执行用时: 32ms, 内存消耗: 4532KB, 提交时间: 2022-07-29
num=list(map(int,input().split())) a=0 for i in num: if i==0: a=a+1 print(a)
Python 3 解法, 执行用时: 32ms, 内存消耗: 4540KB, 提交时间: 2022-07-29
a=input().split() a=list(map(int, a)) print(a.count(0))