結果

問題 No.370 道路の掃除
ユーザー KazunKazun
提出日時 2020-06-12 03:30:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 61,636 KB
最終ジャッジ日時 2024-06-24 03:37:07
合計ジャッジ時間 2,730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,988 KB
testcase_01 AC 40 ms
53,344 KB
testcase_02 AC 39 ms
52,948 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 38 ms
52,464 KB
testcase_05 AC 37 ms
52,656 KB
testcase_06 AC 38 ms
52,264 KB
testcase_07 AC 37 ms
52,344 KB
testcase_08 AC 37 ms
52,628 KB
testcase_09 AC 40 ms
52,824 KB
testcase_10 AC 37 ms
53,096 KB
testcase_11 AC 40 ms
53,360 KB
testcase_12 AC 39 ms
53,932 KB
testcase_13 AC 40 ms
52,396 KB
testcase_14 AC 39 ms
52,132 KB
testcase_15 AC 40 ms
53,048 KB
testcase_16 AC 40 ms
54,252 KB
testcase_17 AC 39 ms
53,484 KB
testcase_18 AC 40 ms
53,024 KB
testcase_19 AC 39 ms
53,372 KB
testcase_20 AC 46 ms
56,836 KB
testcase_21 AC 46 ms
55,308 KB
testcase_22 AC 43 ms
54,524 KB
testcase_23 AC 45 ms
55,824 KB
testcase_24 AC 40 ms
53,688 KB
testcase_25 AC 42 ms
54,680 KB
testcase_26 AC 48 ms
61,636 KB
testcase_27 AC 40 ms
54,088 KB
testcase_28 AC 43 ms
54,852 KB
testcase_29 AC 44 ms
55,484 KB
testcase_30 AC 49 ms
61,540 KB
testcase_31 AC 42 ms
54,396 KB
testcase_32 AC 45 ms
55,332 KB
testcase_33 AC 50 ms
60,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a,b):
    if b<=0:
        return -a
    elif a<=0<=b:
        return min(b-2*a,2*b-a)
    else:
        return b

N,M=map(int,input().split())
D=[]
for i in range(M):
    D.append(int(input()))

D.sort()

E=[]
for k in range(M-N+1):
    E.append(f(D[k],D[k+N-1]))

print(min(E))
0