NC200351. Psycho-Pass
描述
输入描述
一个字符串s,字符串的长度小于1e5
输出描述
一个整数,字符串中1的个数
示例1
输入:
0101
输出:
2
pypy3(pypy3.6.1) 解法, 执行用时: 61ms, 内存消耗: 24660K, 提交时间: 2020-05-22 19:17:28
n = input() print(n.count("1"))
Python3(3.5.2) 解法, 执行用时: 45ms, 内存消耗: 3672K, 提交时间: 2019-12-15 13:04:23
print(input().count('1'))