結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
50,068 KB
testcase_01 AC 427 ms
44,056 KB
testcase_02 AC 431 ms
44,232 KB
testcase_03 AC 427 ms
44,112 KB
testcase_04 AC 429 ms
43,928 KB
testcase_05 AC 427 ms
43,928 KB
testcase_06 AC 428 ms
44,564 KB
testcase_07 AC 430 ms
43,808 KB
testcase_08 AC 427 ms
44,444 KB
testcase_09 AC 430 ms
43,796 KB
testcase_10 AC 430 ms
44,184 KB
testcase_11 AC 430 ms
43,932 KB
testcase_12 AC 426 ms
44,052 KB
testcase_13 AC 426 ms
44,308 KB
testcase_14 AC 437 ms
44,180 KB
testcase_15 AC 428 ms
44,376 KB
testcase_16 AC 429 ms
43,920 KB
testcase_17 AC 434 ms
44,196 KB
testcase_18 AC 436 ms
44,032 KB
testcase_19 AC 429 ms
44,188 KB
testcase_20 AC 428 ms
44,312 KB
testcase_21 AC 478 ms
49,820 KB
testcase_22 AC 507 ms
49,820 KB
evil01.txt AC 490 ms
49,608 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(0)
    else:
        print(min(X_diff_positive))


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