結果

問題 No.135 とりあえず1次元の問題
ユーザー turner18_jpturner18_jp
提出日時 2017-09-28 22:20:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 320 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,916 KB
最終ジャッジ日時 2024-11-15 18:25:52
合計ジャッジ時間 33,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
31,760 KB
testcase_02 AC 31 ms
33,916 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 35 ms
10,880 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 35 ms
10,752 KB
testcase_07 AC 36 ms
10,880 KB
testcase_08 AC 35 ms
10,880 KB
testcase_09 AC 36 ms
10,752 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 35 ms
10,752 KB
testcase_12 AC 69 ms
10,752 KB
testcase_13 AC 36 ms
10,752 KB
testcase_14 AC 276 ms
10,880 KB
testcase_15 AC 70 ms
10,624 KB
testcase_16 AC 317 ms
10,880 KB
testcase_17 AC 283 ms
10,880 KB
testcase_18 AC 39 ms
10,624 KB
testcase_19 AC 234 ms
10,880 KB
testcase_20 AC 156 ms
10,752 KB
testcase_21 TLE -
testcase_22 TLE -
evil01.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n = int(input())
l = list(map(int, input().split()))
min = 0
if n <= 1 or len(set(l)) == 0:
    print('0')
else:
    for i in range(n):
        for j in range(n):
            if not l[i] == l[j]:
                if min == 0 or abs(l[i] - l[j]) < min:
                    min = abs(l[i] - l[j])
    print(min)
0