Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
115919 汤奕硕 统计数字字符个数 Python3 Accepted 40 MS 3736 KB 90 2025-04-05 16:23:27

Tests(10/10):


Code:

s = input() count = 0 for c in s: if c.isdigit(): count += 1 print(count)