結果

問題 No.716 距離
ユーザー akitsugu777akitsugu777
提出日時 2018-10-11 11:19:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-10-12 17:35:26
合計ジャッジ時間 7,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
49,664 KB
testcase_01 AC 320 ms
49,792 KB
testcase_02 AC 322 ms
49,664 KB
testcase_03 AC 321 ms
49,792 KB
testcase_04 AC 330 ms
49,792 KB
testcase_05 AC 320 ms
49,664 KB
testcase_06 AC 326 ms
49,792 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 229 ms
37,120 KB
testcase_11 AC 84 ms
17,920 KB
testcase_12 AC 294 ms
45,952 KB
testcase_13 AC 205 ms
34,048 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 273 ms
42,240 KB
testcase_16 AC 123 ms
23,168 KB
testcase_17 AC 280 ms
45,056 KB
testcase_18 AC 33 ms
11,008 KB
testcase_19 AC 99 ms
19,456 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 33 ms
11,136 KB
testcase_22 AC 56 ms
14,336 KB
testcase_23 AC 33 ms
10,880 KB
testcase_24 AC 225 ms
36,864 KB
testcase_25 AC 87 ms
18,176 KB
testcase_26 AC 146 ms
25,984 KB
testcase_27 AC 180 ms
30,592 KB
testcase_28 AC 32 ms
11,008 KB
testcase_29 AC 150 ms
26,752 KB
testcase_30 AC 144 ms
25,984 KB
testcase_31 AC 211 ms
34,560 KB
testcase_32 AC 178 ms
29,952 KB
testcase_33 AC 160 ms
27,904 KB
testcase_34 AC 118 ms
22,656 KB
testcase_35 AC 30 ms
10,624 KB
testcase_36 AC 46 ms
12,800 KB
testcase_37 AC 29 ms
10,496 KB
testcase_38 AC 73 ms
16,512 KB
testcase_39 AC 155 ms
27,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(min(l))
print(max(l))
0