Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
86781 丁俊杰 满足条件的数II Python3 Accepted 32 MS 3752 KB 113 2024-07-27 23:55:35

Tests(3/3):


Code:

m,k=input().split() a=m.count("3") if int(m)%19==0 and a==int(k): print("YES") else: print("NO")