Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132647 潘允晨 05求百位数的每一位数之和 Python3 Accepted 61 MS 3756 KB 63 2025-10-12 09:01:18

Tests(10/10):


Code:

a=int(input()) b=a%10 c=a//10%10 d=a//100 e=b+c+d print(e)