結果
問題 |
No.135 とりあえず1次元の問題
|
ユーザー |
![]() |
提出日時 | 2022-01-04 03:45:33 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 251 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 30,708 KB |
最終ジャッジ日時 | 2024-10-13 17:19:42 |
合計ジャッジ時間 | 12,643 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 2 |
other | TLE * 1 -- * 21 |
ソースコード
input() a = set(map(int,input().split())) if len(a)<2: print(0) else: ans = max(a) for _ in range(len(a)): if a: i = a.pop() for j in a: if abs(i-j)<ans: ans = abs(i-j) print(ans)