結果

問題 No.716 距離
ユーザー iad_2889iad_2889
提出日時 2019-04-27 14:49:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-05 21:04:19
合計ジャッジ時間 10,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 487 ms
10,752 KB
testcase_01 AC 477 ms
10,880 KB
testcase_02 AC 466 ms
10,752 KB
testcase_03 AC 470 ms
10,624 KB
testcase_04 AC 495 ms
10,752 KB
testcase_05 AC 481 ms
10,624 KB
testcase_06 AC 472 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 374 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 461 ms
10,624 KB
testcase_13 AC 295 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 399 ms
10,624 KB
testcase_16 AC 181 ms
10,752 KB
testcase_17 AC 432 ms
10,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 26 ms
10,624 KB
testcase_21 AC 34 ms
10,496 KB
testcase_22 AC 69 ms
10,624 KB
testcase_23 AC 32 ms
10,624 KB
testcase_24 AC 350 ms
10,752 KB
testcase_25 AC 123 ms
10,624 KB
testcase_26 WA -
testcase_27 AC 252 ms
10,752 KB
testcase_28 AC 34 ms
10,624 KB
testcase_29 AC 220 ms
10,752 KB
testcase_30 AC 197 ms
10,752 KB
testcase_31 AC 308 ms
10,752 KB
testcase_32 AC 250 ms
10,752 KB
testcase_33 AC 227 ms
10,624 KB
testcase_34 AC 165 ms
10,752 KB
testcase_35 WA -
testcase_36 AC 51 ms
10,624 KB
testcase_37 AC 26 ms
10,752 KB
testcase_38 WA -
testcase_39 AC 215 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
points = list({int(x) for x in input().split()})
if len(points) < N:
    min_distance = 0
else:
    min_distance = points[1] - points[0]

max_distance = points[1] - points[0]
for i in range(len(points) - 1):
    pi = points[i]
    for j in points[i + 1:]:
        temp = abs(j - pi)
        max_distance = max([max_distance,temp])
        min_distance = min(min_distance,temp)

print(min_distance)
print(max_distance)
0