結果

問題 No.716 距離
ユーザー crizecrize
提出日時 2018-07-27 23:04:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-07-05 04:36:17
合計ジャッジ時間 9,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 410 ms
49,792 KB
testcase_01 AC 408 ms
49,792 KB
testcase_02 AC 427 ms
49,792 KB
testcase_03 AC 421 ms
49,920 KB
testcase_04 AC 411 ms
49,792 KB
testcase_05 AC 418 ms
49,664 KB
testcase_06 AC 415 ms
49,792 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 284 ms
37,120 KB
testcase_11 AC 99 ms
17,920 KB
testcase_12 AC 363 ms
46,208 KB
testcase_13 AC 261 ms
34,048 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 343 ms
42,240 KB
testcase_16 AC 151 ms
23,296 KB
testcase_17 AC 361 ms
44,800 KB
testcase_18 AC 35 ms
11,008 KB
testcase_19 AC 116 ms
19,456 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 37 ms
11,136 KB
testcase_22 AC 64 ms
14,464 KB
testcase_23 AC 33 ms
11,008 KB
testcase_24 AC 287 ms
37,120 KB
testcase_25 AC 99 ms
18,048 KB
testcase_26 AC 171 ms
25,984 KB
testcase_27 AC 223 ms
30,592 KB
testcase_28 AC 34 ms
11,008 KB
testcase_29 AC 181 ms
26,880 KB
testcase_30 AC 179 ms
25,856 KB
testcase_31 AC 279 ms
34,560 KB
testcase_32 AC 211 ms
29,696 KB
testcase_33 AC 192 ms
28,160 KB
testcase_34 AC 138 ms
22,656 KB
testcase_35 AC 30 ms
10,496 KB
testcase_36 AC 50 ms
12,800 KB
testcase_37 AC 30 ms
10,624 KB
testcase_38 AC 84 ms
16,384 KB
testcase_39 AC 189 ms
27,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
saitan=[]
m=list(map(int,input().split()))
for i in range(n-1):
    for j in range(n):
        if i!=j:
            saitan.append(abs(m[i]-m[j]))
print(min(saitan))
print(max(m)-min(m))
0