列表

详情


NC256762. 游游的数字圈

描述

游游拿到了一串数字,她想知道这串数字一共有多少个圆圈?

提示:数字0、6、9这三种数字各有一个圆圈,数字8有两个圆圈。

输入描述

一个字符串,仅由数字字符组成。
长度不超过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'))

上一题