Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128122 杨嘉陆 猜数字 Python3 Compile Error 0 MS 0 KB 256 2025-08-02 14:26:41

Tests(0/0):


Code:

t=int(input()) for i in range(t): a,b,c=input().split() a,b,c=int(a),int(b),int(c) for x in (1000,10000): if x%a==0 and (x+1)%b==0 and (x+2)%c==0: print(x) break else: print("Impossible")


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 9)