結果

問題 No.716 距離
ユーザー woodwood
提出日時 2018-11-08 13:06:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-11-20 21:01:38
合計ジャッジ時間 9,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 421 ms
49,920 KB
testcase_01 AC 410 ms
49,664 KB
testcase_02 AC 418 ms
49,792 KB
testcase_03 AC 412 ms
49,792 KB
testcase_04 AC 406 ms
49,792 KB
testcase_05 AC 418 ms
49,792 KB
testcase_06 AC 410 ms
49,792 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 286 ms
37,120 KB
testcase_11 AC 100 ms
18,048 KB
testcase_12 AC 371 ms
46,208 KB
testcase_13 AC 257 ms
34,176 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 336 ms
42,240 KB
testcase_16 AC 159 ms
23,296 KB
testcase_17 AC 378 ms
45,184 KB
testcase_18 AC 35 ms
11,136 KB
testcase_19 AC 117 ms
19,712 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 36 ms
11,264 KB
testcase_22 AC 65 ms
14,336 KB
testcase_23 AC 35 ms
11,136 KB
testcase_24 AC 284 ms
36,992 KB
testcase_25 AC 104 ms
18,304 KB
testcase_26 AC 178 ms
26,112 KB
testcase_27 AC 225 ms
30,720 KB
testcase_28 AC 34 ms
11,008 KB
testcase_29 AC 185 ms
27,008 KB
testcase_30 AC 180 ms
26,112 KB
testcase_31 AC 262 ms
34,688 KB
testcase_32 AC 221 ms
30,080 KB
testcase_33 AC 199 ms
28,032 KB
testcase_34 AC 145 ms
22,656 KB
testcase_35 AC 31 ms
10,624 KB
testcase_36 AC 51 ms
12,928 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 87 ms
16,512 KB
testcase_39 AC 198 ms
27,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

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

d = []
for q,i in enumerate(a):
    for w,j in enumerate(a):
        if q == w:
            continue
        d.append(abs(i-j))

print(min(d))

print(abs(max(a)-min(a)))
0