結果

問題 No.716 距離
ユーザー akitsugu777akitsugu777
提出日時 2018-10-09 13:35:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,624 KB
最終ジャッジ日時 2024-10-12 16:27:24
合計ジャッジ時間 8,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 370 ms
58,496 KB
testcase_01 AC 365 ms
58,496 KB
testcase_02 AC 363 ms
58,496 KB
testcase_03 AC 372 ms
58,624 KB
testcase_04 AC 386 ms
58,624 KB
testcase_05 AC 368 ms
58,368 KB
testcase_06 AC 374 ms
58,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 253 ms
42,752 KB
testcase_11 AC 93 ms
19,584 KB
testcase_12 AC 350 ms
53,376 KB
testcase_13 AC 235 ms
39,296 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 324 ms
49,280 KB
testcase_16 AC 146 ms
26,112 KB
testcase_17 AC 328 ms
52,096 KB
testcase_18 AC 35 ms
11,136 KB
testcase_19 AC 107 ms
21,504 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 34 ms
11,392 KB
testcase_22 AC 60 ms
15,104 KB
testcase_23 AC 34 ms
11,136 KB
testcase_24 AC 254 ms
42,624 KB
testcase_25 AC 96 ms
19,840 KB
testcase_26 AC 163 ms
29,184 KB
testcase_27 AC 207 ms
34,944 KB
testcase_28 AC 33 ms
11,264 KB
testcase_29 AC 181 ms
30,336 KB
testcase_30 AC 170 ms
29,440 KB
testcase_31 AC 239 ms
39,936 KB
testcase_32 AC 198 ms
34,176 KB
testcase_33 AC 188 ms
31,616 KB
testcase_34 AC 139 ms
25,344 KB
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 50 ms
13,440 KB
testcase_37 AC 29 ms
10,624 KB
testcase_38 AC 78 ms
17,536 KB
testcase_39 AC 180 ms
30,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(_) for _ in input().split()]

l3 = []
for i in a:
    l = a[:]
    b = l.pop(l.index(i))
    l2 = []
    for j in l:
        l2.append(abs(b-j))
    l3.append(l2)

l4 = [j for i in l3 for j in i]
print(min(l4))
print(max(l4))
0