結果
| 問題 | No.135 とりあえず1次元の問題 |
| コンテスト | |
| ユーザー |
panapanagdf
|
| 提出日時 | 2019-09-20 14:26:46 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 170 bytes |
| 記録 | |
| コンパイル時間 | 473 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 27,828 KB |
| 最終ジャッジ日時 | 2026-04-04 10:11:06 |
| 合計ジャッジ時間 | 4,265 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | WA * 21 RE * 1 |
ソースコード
a=int(input())
b=[int(i) for i in input().split()]
c=set(b)
d=[]
for i in c:
d.append(i)
e=[]
for i in range(1,len(d)):
e.append(d[i]-d[i-1])
print(min(e))
panapanagdf