結果

問題 No.716 距離
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-09-25 15:03:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 334 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-09-22 06:31:00
合計ジャッジ時間 5,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 130 ms
13,568 KB
testcase_11 AC 58 ms
11,520 KB
testcase_12 AC 165 ms
14,592 KB
testcase_13 AC 119 ms
13,184 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 149 ms
14,208 KB
testcase_16 AC 79 ms
12,032 KB
testcase_17 AC 160 ms
14,336 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 63 ms
11,648 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 44 ms
11,136 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 130 ms
13,440 KB
testcase_25 AC 59 ms
11,648 KB
testcase_26 AC 89 ms
12,288 KB
testcase_27 AC 107 ms
12,800 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 92 ms
12,416 KB
testcase_30 AC 89 ms
12,416 KB
testcase_31 AC 121 ms
13,184 KB
testcase_32 AC 104 ms
12,800 KB
testcase_33 AC 95 ms
12,544 KB
testcase_34 AC 76 ms
12,032 KB
testcase_35 AC 30 ms
10,880 KB
testcase_36 AC 38 ms
11,008 KB
testcase_37 AC 30 ms
10,880 KB
testcase_38 AC 51 ms
11,392 KB
testcase_39 AC 93 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.716 距離
def select_distance_min(n, a):
    if len(a) == 1:
        return n
    
    for i in a[1:]:
        n = min(i - a[0], n)
    return select_distance_min(n, a[1:])

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

distance_max = a[n - 1] - a[0]

print(select_distance_min(distance_max, a))
print(distance_max)


0