結果
| 問題 | No.135 とりあえず1次元の問題 |
| コンテスト | |
| ユーザー |
panapanagdf
|
| 提出日時 | 2019-09-20 14:43:21 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 158 ms / 5,000 ms |
| + 763µs | |
| コード長 | 211 bytes |
| 記録 | |
| コンパイル時間 | 287 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 27,936 KB |
| 最終ジャッジ日時 | 2026-08-26 20:02:39 |
| 合計ジャッジ時間 | 4,491 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
a=int(input())
b=[int(i) for i in input().split()]
c=set(b)
d=[]
for i in c:
d.append(i)
d.sort()
e=[]
for i in range(1,len(d)):
e.append(d[i]-d[i-1])
if e==[]:
print(0)
else:
print(min(e))
panapanagdf