結果
問題 |
No.135 とりあえず1次元の問題
|
ユーザー |
![]() |
提出日時 | 2019-05-03 01:32:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 218 bytes |
コンパイル時間 | 325 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 25,516 KB |
最終ジャッジ日時 | 2024-12-31 14:03:36 |
合計ジャッジ時間 | 2,616 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 21 WA * 1 |
ソースコード
input() xs = list(set(map(int,input().split()))) len_x = len(xs) xs.sort(reverse=True) min_distance = float("inf") for i in range(len_x - 1): min_distance = min([min_distance,xs[i] - xs[i + 1]]) print(min_distance)