結果

問題 No.135 とりあえず1次元の問題
ユーザー pluto77
提出日時 2016-02-09 10:43:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 251 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,992 KB
最終ジャッジ日時 2025-01-03 11:36:32
合計ジャッジ時間 2,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_135
import sys

x=int(raw_input())
s=[]
s=map(int,raw_input().split())

s.sort()

dif=10**6+1
for i in xrange(1,len(s)):
 if s[-1]==0:
  print 0
  sys.exit()
 if s[i]==s[i-1]:
  continue
 d=s[i]-s[i-1]
 dif=min(d,dif)
print dif

0