| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134218 | 胡海峰老师 | 两个数的最小距离 | Python3 | Wrong Answer | 244 MS | 3848 KB | 222 | 2025-10-26 09:16:51 |
n = int(input()) a = list(map(int,input().split())) dis = 10**8 for i in range(n): for j in range(n): if i!=j: d = abs( a[i] - a[j]) if d< dis: dis =d print(dis)
------Input------
2 -2147483648 2147483647
------Answer-----
4294967295
------Your output-----
100000000