Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112115 | 杨嘉陆 | 12满足条件的四位数 | Python3 | Compile Error | 0 MS | 0 KB | 187 | 2025-03-08 14:15:23 |
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=num100\\%10 b=num\\1000 if e-d-c-b>0: s=s+1 print(s)
File "Main.py", line 7 d=num\\10%10 ^ SyntaxError: unexpected character after line continuation character