結果

問題 No.135 とりあえず1次元の問題
ユーザー soupesuteakasoupesuteaka
提出日時 2016-03-03 17:21:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,012 KB
最終ジャッジ日時 2024-06-11 06:35:36
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
20,116 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 26 ms
10,880 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 26 ms
10,880 KB
testcase_19 AC 26 ms
10,880 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 75 ms
21,012 KB
testcase_22 AC 131 ms
20,240 KB
evil01.txt AC 124 ms
20,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: UTF-8

import sys
import re
import itertools
from math import log
from collections import deque

### defs ###


### main ###
N = int(sys.stdin.readline())
X = list(map(int,sys.stdin.readline().split()))
X.sort()
ans=10000000
for i in range(1,N):
	x = X[i]-X[i-1]
	if(x==0):
		continue
	ans = min(ans,x)
if(ans==10000000):
	ans=-1

print(ans)
0