| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136149 | 徐向彬 | 方程求解 | Python3 | Compile Error | 0 MS | 0 KB | 161 | 2025-11-09 16:58:36 |
m,n=input(),input() for x in range(0,m+1): for y in range(0,m+1): if ( x + y == m ) and ( x * y == n ): print("Yes") exit() print("No")
Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 4)