結果

問題 No.370 道路の掃除
ユーザー g-tetsuya
提出日時 2016-05-21 15:08:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-06 17:03:49
合計ジャッジ時間 2,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30 WA * 2 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

str_N, str_M = input().split(" ")
N = int(str_N)
M = int(str_M)
Ds = []
for i in range(M):
    Ds.append(int(input()))
    
Ds.sort()

ans = []

for i in range(M-N):
    max_value = max(Ds[i:i+N])
    min_value = min(Ds[i:i+N])
    if max_value >= 0 and min_value >= 0:
        ans.append(max_value)
        continue
    if max_value >= 0 and min_value < 0:
        ans.append(min(max_value * 2 + -1 * min_value, max_value + -1 * min_value * 2))
        continue
    if max_value < 0 and min_value < 0:
        ans.append(-1 * min_value)
        
print(min(ans))
0