結果

問題 No.135 とりあえず1次元の問題
ユーザー HagianHagian
提出日時 2021-06-06 20:59:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 267 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,472 KB
最終ジャッジ日時 2024-11-23 16:57:27
合計ジャッジ時間 34,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
17,568 KB
testcase_02 AC 28 ms
16,000 KB
testcase_03 AC 28 ms
31,472 KB
testcase_04 AC 36 ms
10,752 KB
testcase_05 AC 36 ms
10,752 KB
testcase_06 AC 36 ms
10,752 KB
testcase_07 AC 36 ms
10,624 KB
testcase_08 AC 35 ms
10,624 KB
testcase_09 AC 35 ms
10,752 KB
testcase_10 AC 36 ms
10,752 KB
testcase_11 AC 35 ms
10,752 KB
testcase_12 AC 110 ms
10,624 KB
testcase_13 AC 37 ms
10,752 KB
testcase_14 AC 523 ms
10,624 KB
testcase_15 AC 113 ms
10,624 KB
testcase_16 AC 619 ms
10,752 KB
testcase_17 AC 548 ms
10,752 KB
testcase_18 AC 44 ms
10,624 KB
testcase_19 AC 452 ms
10,752 KB
testcase_20 AC 279 ms
10,624 KB
testcase_21 TLE -
testcase_22 TLE -
evil01.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = [int(i) for i in input().split()]
res = max(X)
for i in range(N):
    p_i = X[i]
    for j in range(1,N):
        p_j = X[j]
        if X[i] == X[j] or i == j:
            pass
        else:
            res = min(res, abs(X[i] - X[j]))
print(res)
0