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