結果

問題 No.135 とりあえず1次元の問題
ユーザー matriematrie
提出日時 2020-11-26 01:13:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 211 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-07-23 19:35:56
合計ジャッジ時間 14,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 589 ms
54,068 KB
testcase_01 AC 514 ms
44,072 KB
testcase_02 AC 515 ms
44,452 KB
testcase_03 AC 511 ms
43,932 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 528 ms
44,196 KB
testcase_13 AC 513 ms
44,332 KB
testcase_14 AC 514 ms
44,320 KB
testcase_15 AC 520 ms
44,308 KB
testcase_16 RE -
testcase_17 AC 519 ms
44,192 KB
testcase_18 AC 514 ms
44,448 KB
testcase_19 AC 513 ms
44,332 KB
testcase_20 AC 509 ms
44,320 KB
testcase_21 AC 552 ms
50,084 KB
testcase_22 RE -
evil01.txt AC 571 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())
l = list(set(list(map(int, input().split()))))
l.sort()

if len(l)==1: print(0)

elif len(l)==2: print(l[1]-l[0])

else:
	a = np.array(l)
	d = a[1:N] - a[0:N-1]
	print(min(d))
0