結果

問題 No.135 とりあえず1次元の問題
ユーザー ThetaTheta
提出日時 2022-10-28 16:25:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,452 KB
最終ジャッジ日時 2024-07-05 20:28:43
合計ジャッジ時間 13,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 498 ms
50,452 KB
testcase_01 AC 426 ms
44,060 KB
testcase_02 AC 428 ms
43,924 KB
testcase_03 WA -
testcase_04 AC 424 ms
44,056 KB
testcase_05 AC 427 ms
44,052 KB
testcase_06 AC 429 ms
43,932 KB
testcase_07 AC 430 ms
43,932 KB
testcase_08 AC 427 ms
44,184 KB
testcase_09 AC 430 ms
44,312 KB
testcase_10 AC 429 ms
44,312 KB
testcase_11 AC 428 ms
44,052 KB
testcase_12 AC 427 ms
44,316 KB
testcase_13 AC 428 ms
43,932 KB
testcase_14 AC 431 ms
44,308 KB
testcase_15 AC 428 ms
44,312 KB
testcase_16 AC 430 ms
44,316 KB
testcase_17 AC 428 ms
44,192 KB
testcase_18 AC 440 ms
43,936 KB
testcase_19 AC 433 ms
44,192 KB
testcase_20 AC 438 ms
44,312 KB
testcase_21 AC 475 ms
49,692 KB
testcase_22 AC 535 ms
49,700 KB
evil01.txt AC 503 ms
50,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import diff


def main():
    N = int(input())
    X = list(map(int, input().split()))
    X.sort()

    X_diff = diff(X)
    X_diff_positive = list(filter(lambda num: num > 0, X_diff))
    if not X_diff_positive:
        print(-1)
    else:
        print(min(X_diff_positive))


if __name__ == "__main__":
    main()
0