Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
47459 李昕霏 符合条件的数 Python3 Accepted 30 MS 3764 KB 171 2023-04-30 14:34:07

Tests(2/2):


Code:

a,b,c=map(int,input().split()) d=0 e=0 while True: d+=1 if d%a==1 and d%b==1 and d%c==1: print(d) e+=1 if e==10: break