結果

問題 No.135 とりあえず1次元の問題
ユーザー yumechi
提出日時 2015-09-23 06:07:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 198 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2025-01-03 07:48:59
合計ジャッジ時間 2,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xli = list(set(list(map(int, input().split()))))
xli.sort()
res = 10 ** 7
n = len(xli)
for i in range(n-1):
    res = min(res, xli[i+1] - xli[i])
print(res if res != 10 ** 7 else 0)
0