結果

問題 No.716 距離
ユーザー convexineqconvexineq
提出日時 2021-03-15 04:23:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 59,000 KB
最終ジャッジ日時 2024-11-06 18:17:57
合計ジャッジ時間 2,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,116 KB
testcase_01 AC 41 ms
58,760 KB
testcase_02 AC 42 ms
57,716 KB
testcase_03 AC 41 ms
57,964 KB
testcase_04 AC 42 ms
57,832 KB
testcase_05 AC 41 ms
58,084 KB
testcase_06 AC 42 ms
58,172 KB
testcase_07 AC 39 ms
52,388 KB
testcase_08 AC 38 ms
53,056 KB
testcase_09 AC 38 ms
52,732 KB
testcase_10 AC 42 ms
58,524 KB
testcase_11 AC 39 ms
52,912 KB
testcase_12 AC 41 ms
58,216 KB
testcase_13 AC 41 ms
58,316 KB
testcase_14 AC 38 ms
52,836 KB
testcase_15 AC 41 ms
58,596 KB
testcase_16 AC 41 ms
58,276 KB
testcase_17 AC 41 ms
57,840 KB
testcase_18 AC 38 ms
52,332 KB
testcase_19 AC 39 ms
53,372 KB
testcase_20 AC 38 ms
52,104 KB
testcase_21 AC 38 ms
52,144 KB
testcase_22 AC 38 ms
52,892 KB
testcase_23 AC 37 ms
52,520 KB
testcase_24 AC 41 ms
59,000 KB
testcase_25 AC 38 ms
53,368 KB
testcase_26 AC 41 ms
58,220 KB
testcase_27 AC 42 ms
57,628 KB
testcase_28 AC 39 ms
52,896 KB
testcase_29 AC 42 ms
57,904 KB
testcase_30 AC 41 ms
57,060 KB
testcase_31 AC 41 ms
56,976 KB
testcase_32 AC 41 ms
57,524 KB
testcase_33 AC 42 ms
57,932 KB
testcase_34 AC 40 ms
57,748 KB
testcase_35 AC 38 ms
52,200 KB
testcase_36 AC 39 ms
53,712 KB
testcase_37 AC 39 ms
52,332 KB
testcase_38 AC 38 ms
52,976 KB
testcase_39 AC 41 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
M = max(a) - min(a)
m = min(i-j for i,j in zip(a[1:],a))
print(m)
print(M)
0