結果

問題 No.135 とりあえず1次元の問題
ユーザー lloyzlloyz
提出日時 2023-09-06 00:30:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 86,968 KB
実行使用メモリ 100,916 KB
最終ジャッジ日時 2023-09-06 00:30:40
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
100,916 KB
testcase_01 AC 69 ms
71,304 KB
testcase_02 AC 70 ms
71,268 KB
testcase_03 WA -
testcase_04 AC 69 ms
71,380 KB
testcase_05 AC 70 ms
71,236 KB
testcase_06 AC 68 ms
71,240 KB
testcase_07 AC 71 ms
71,276 KB
testcase_08 AC 70 ms
71,388 KB
testcase_09 AC 70 ms
71,304 KB
testcase_10 AC 69 ms
71,368 KB
testcase_11 AC 69 ms
71,192 KB
testcase_12 AC 70 ms
71,340 KB
testcase_13 AC 70 ms
71,236 KB
testcase_14 AC 69 ms
71,336 KB
testcase_15 AC 71 ms
71,364 KB
testcase_16 AC 71 ms
71,272 KB
testcase_17 AC 70 ms
71,276 KB
testcase_18 AC 70 ms
71,240 KB
testcase_19 AC 70 ms
71,344 KB
testcase_20 AC 68 ms
71,380 KB
testcase_21 AC 85 ms
84,088 KB
testcase_22 AC 118 ms
100,640 KB
evil01.txt AC 107 ms
100,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
X = list(set(map(int, input().split())))

n = len(X)
if n == 1:
    print(-1)
X.sort()
ans = 10**18
for i in range(n - 1):
    ans = min(ans, X[i + 1] - X[i])
print(ans)
0