| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134206 | 赵乘浩 | 两个数的最小距离 | Python3 | Wrong Answer | 353 MS | 3840 KB | 201 | 2025-10-26 08:59:34 |
n=int(input()) a=list(map(int,input().split())) s=10**8 for i in range(n): for j in range(n): if i!=j: d=abs(a[i]-a[j]) if d<s: s=d print(s)
------Input------
2 -2147483648 2147483647
------Answer-----
4294967295
------Your output-----
100000000