結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー |
|
提出日時 | 2019-06-20 23:51:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 105 ms / 5,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 25,324 KB |
最終ジャッジ日時 | 2024-12-23 01:39:19 |
合計ジャッジ時間 | 2,225 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
n = int(input()) x = list(set(map(int,input().split()))) x = sorted(x) if(len(x) < 2): print(0) else: l= [x[i+1] - x[i] for i in range(len(x)-1)] min_distance=min(l) print(min_distance)