結果

問題 No.135 とりあえず1次元の問題
ユーザー ABKZABKZ
提出日時 2021-06-29 22:31:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 102,024 KB
最終ジャッジ日時 2024-06-26 01:07:29
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
pos = sorted(list(map(int, input().split())))

dis = [b - a for a, b in list(zip(pos[:-1], pos[1:])) if a != b]

print(min(dis) if len(dis) > 0 else 0)
0