結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | notsix4 |
提出日時 | 2021-11-29 12:38:27 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 125 ms / 5,000 ms |
コード長 | 203 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 23,144 KB |
最終ジャッジ日時 | 2024-07-02 10:26:41 |
合計ジャッジ時間 | 2,031 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
n=int(input()) l=list(map(int,input().split())) nl=sorted(list(set(l))) if len(nl)==1: print(0) else: al=[] for i in range(len(nl)-1): al.append(abs(nl[i+1]-nl[i])) print(min(al))