結果

問題 No.135 とりあえず1次元の問題
ユーザー matsu7874matsu7874
提出日時 2015-01-25 23:48:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 172 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 23,700 KB
最終ジャッジ日時 2025-01-03 03:06:34
合計ジャッジ時間 2,230 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = [int(x) for x in input().split()]
X = list(set(X))
X.sort()
N = len(X)
if N == 1:
    print(0)
    exit()
print(min([X[i+1]-X[i] for i in range(N-1)]))
0