Python RE
查看原帖
Python RE
304380
LοgεnΓos_707楼主2023/3/25 00:27
n,x = map(int,input().split())
str1 = ''
for i in range(1,n+1):
    str1 = str1.join(i)
print(str1.count(x))
2023/3/25 00:27
加载中...