結果

問題 No.716 距離
ユーザー akitsugu777akitsugu777
提出日時 2019-06-05 09:18:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-09-19 18:19:23
合計ジャッジ時間 7,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
49,792 KB
testcase_01 AC 317 ms
49,920 KB
testcase_02 AC 295 ms
50,048 KB
testcase_03 AC 292 ms
49,792 KB
testcase_04 AC 289 ms
49,920 KB
testcase_05 AC 299 ms
49,792 KB
testcase_06 AC 301 ms
49,792 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 216 ms
37,120 KB
testcase_11 AC 79 ms
18,048 KB
testcase_12 AC 295 ms
46,208 KB
testcase_13 AC 180 ms
33,920 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 243 ms
42,368 KB
testcase_16 AC 115 ms
23,168 KB
testcase_17 AC 274 ms
44,928 KB
testcase_18 AC 29 ms
11,136 KB
testcase_19 AC 88 ms
19,584 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 30 ms
11,264 KB
testcase_22 AC 51 ms
14,336 KB
testcase_23 AC 29 ms
11,008 KB
testcase_24 AC 216 ms
36,992 KB
testcase_25 AC 79 ms
18,176 KB
testcase_26 AC 131 ms
26,112 KB
testcase_27 AC 167 ms
30,592 KB
testcase_28 AC 31 ms
11,008 KB
testcase_29 AC 144 ms
26,880 KB
testcase_30 AC 130 ms
26,240 KB
testcase_31 AC 191 ms
34,688 KB
testcase_32 AC 162 ms
30,080 KB
testcase_33 AC 149 ms
28,032 KB
testcase_34 AC 108 ms
22,656 KB
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 43 ms
12,928 KB
testcase_37 AC 27 ms
10,624 KB
testcase_38 AC 66 ms
16,512 KB
testcase_39 AC 159 ms
27,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

d = []
for i in range(n):
    b = a[:]
    c = b.pop(i)
    for j in b:
        d.append(abs(c-j))

print(min(d))
print(max(d))
0