Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89653 丁俊杰 满足条件的数 Python3 Accepted 37 MS 3748 KB 121 2024-08-28 00:34:18

Tests(1/1):


Code:

a,b,c=map(int,input().split()) for x in range(2,min(a,b,c)+1): if a%x==b%x==c%x: print(x) break