Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
112112 张亦瑞 12满足条件的四位数 Python3 Compile Error 0 MS 0 KB 169 2025-03-08 14:12:39

Tests(0/0):


Code:

n=int(input()) a=input().split() a=[int(x)for x in a] s=0 for num in a: e=num%10 d=num//10%10 c=num//100%10 b=num//1000 if e-d-c-b>0: s=s+1 print(s)


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 11)