結果

問題 No.135 とりあえず1次元の問題
ユーザー yuki2006yuki2006
提出日時 2015-01-19 20:21:51
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 86,516 KB
最終ジャッジ日時 2024-06-11 00:25:34
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
86,288 KB
testcase_01 AC 72 ms
75,392 KB
testcase_02 AC 73 ms
75,264 KB
testcase_03 AC 73 ms
75,540 KB
testcase_04 AC 74 ms
75,264 KB
testcase_05 AC 74 ms
75,648 KB
testcase_06 AC 73 ms
75,392 KB
testcase_07 AC 73 ms
75,648 KB
testcase_08 AC 74 ms
75,392 KB
testcase_09 AC 72 ms
75,392 KB
testcase_10 AC 73 ms
75,904 KB
testcase_11 AC 74 ms
75,904 KB
testcase_12 AC 73 ms
75,776 KB
testcase_13 AC 74 ms
75,520 KB
testcase_14 AC 75 ms
76,688 KB
testcase_15 AC 74 ms
75,904 KB
testcase_16 AC 75 ms
77,184 KB
testcase_17 AC 77 ms
76,832 KB
testcase_18 AC 72 ms
75,404 KB
testcase_19 AC 78 ms
76,568 KB
testcase_20 AC 77 ms
75,392 KB
testcase_21 AC 93 ms
85,748 KB
testcase_22 AC 107 ms
86,516 KB
evil01.txt AC 98 ms
86,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
A = map(int, raw_input().split())

A.sort()

mn = A[-1] - A[0]
for i in xrange(len(A) - 1):
    v = A[i + 1] - A[i]
    if v > 0:
        mn = min(mn, v)

print mn
0