NC256762. 游游的数字圈
描述
输入描述
一个字符串,仅由数字字符组成。
长度不超过100000。
输出描述
该字符串包含的圆圈数量。
示例1
输入:
1234567890
输出:
5
pypy3 解法, 执行用时: 84ms, 内存消耗: 36012K, 提交时间: 2023-08-07 22:40:38
s = input() print(s.count("0")+s.count("6")+s.count("9")+2*s.count("8"))
Python3 解法, 执行用时: 40ms, 内存消耗: 4724K, 提交时间: 2023-08-06 19:02:17
s=input() print(s.count('0')+s.count('6')+s.count('9')+2*s.count('8'))