結果

問題 No.135 とりあえず1次元の問題
ユーザー oz4point5oz4point5
提出日時 2019-03-30 17:25:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 275 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,336 KB
最終ジャッジ日時 2024-11-15 20:36:07
合計ジャッジ時間 32,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
31,212 KB
testcase_02 AC 31 ms
31,336 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 34 ms
10,624 KB
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 34 ms
10,624 KB
testcase_07 AC 34 ms
10,624 KB
testcase_08 AC 35 ms
10,496 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 33 ms
10,624 KB
testcase_11 AC 34 ms
10,624 KB
testcase_12 AC 66 ms
10,624 KB
testcase_13 AC 35 ms
10,624 KB
testcase_14 AC 243 ms
10,624 KB
testcase_15 AC 65 ms
10,752 KB
testcase_16 AC 279 ms
10,624 KB
testcase_17 AC 254 ms
10,752 KB
testcase_18 AC 38 ms
10,496 KB
testcase_19 AC 207 ms
10,624 KB
testcase_20 AC 136 ms
10,624 KB
testcase_21 TLE -
testcase_22 TLE -
evil01.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

n = int(input())
x = list(map(int,input().split()))

minlen = 100000000

for i in range(n):
    for j in range(i+1,n):
        if x[i] != x[j]:
            minlen = min(minlen, abs(x[i] - x[j]))

if minlen == 100000000:
    minlen = 0

print(minlen)
0