Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143480 丁俊杰 神秘数字 Python3 Accepted 36 MS 3756 KB 123 2026-01-16 13:07:14

Tests(10/10):


Code:

a=int(input()) b=a+1 while True: if b%3==2 and b%5==3 and b%7==2: print(b) break b+=1