結果

問題 No.135 とりあえず1次元の問題
コンテスト
ユーザー No
提出日時 2017-05-24 02:51:39
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 139 ms / 5,000 ms
+ 676µs
コード長 250 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 296 ms
コンパイル使用メモリ 21,464 KB
実行使用メモリ 23,816 KB
最終ジャッジ日時 2026-08-31 01:14:58
合計ジャッジ時間 4,324 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

n = int(input())
x = list(map(int,input().split()))
x.sort()
mi = 10 ** 7
f = False
for i in range(len(x) - 1):
    s = x[i + 1] - x[i]
    if mi > s and s > 0:
        f = True
        mi = s
if n == 1 or f == False:
    print(0)
else:
    print(mi)
0