結果

問題 No.716 距離
ユーザー titiatitia
提出日時 2024-12-27 06:11:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-27 06:11:39
合計ジャッジ時間 12,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 539 ms
10,496 KB
testcase_01 AC 557 ms
10,496 KB
testcase_02 AC 568 ms
10,624 KB
testcase_03 AC 521 ms
10,496 KB
testcase_04 AC 572 ms
10,496 KB
testcase_05 AC 542 ms
10,496 KB
testcase_06 AC 549 ms
10,624 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 28 ms
10,368 KB
testcase_10 AC 354 ms
10,496 KB
testcase_11 AC 126 ms
10,624 KB
testcase_12 AC 473 ms
10,496 KB
testcase_13 AC 327 ms
10,624 KB
testcase_14 AC 28 ms
10,496 KB
testcase_15 AC 423 ms
10,496 KB
testcase_16 AC 175 ms
10,624 KB
testcase_17 AC 481 ms
10,496 KB
testcase_18 AC 34 ms
10,496 KB
testcase_19 AC 145 ms
10,496 KB
testcase_20 AC 29 ms
10,496 KB
testcase_21 AC 35 ms
10,624 KB
testcase_22 AC 73 ms
10,624 KB
testcase_23 AC 34 ms
10,496 KB
testcase_24 AC 345 ms
10,624 KB
testcase_25 AC 124 ms
10,496 KB
testcase_26 AC 219 ms
10,624 KB
testcase_27 AC 271 ms
10,496 KB
testcase_28 AC 34 ms
10,496 KB
testcase_29 AC 221 ms
10,624 KB
testcase_30 AC 219 ms
10,624 KB
testcase_31 AC 356 ms
10,496 KB
testcase_32 AC 267 ms
10,496 KB
testcase_33 AC 246 ms
10,496 KB
testcase_34 AC 184 ms
10,496 KB
testcase_35 AC 30 ms
10,496 KB
testcase_36 AC 55 ms
10,624 KB
testcase_37 AC 30 ms
10,368 KB
testcase_38 AC 99 ms
10,496 KB
testcase_39 AC 252 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

MIN=1<<60
MAX=0

for i in range(N):
    for j in range(i+1,N):
        dis=abs(A[i]-A[j])

        MIN=min(MIN,dis)
        MAX=max(MAX,dis)

print(MIN)
print(MAX)
0