Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
86782 丁俊杰 满足条件四位数的个数 Python3 Accepted 43 MS 3792 KB 145 2024-07-28 00:11:56

Tests(10/10):


Code:

n=int(input()) a=list(map(int,input().split())) res=0 for x in a: if x%10-x//1000-x//100%10-x//10%10>0: res+=1 print(res)