結果

問題 No.370 道路の掃除
ユーザー flippergoflippergo
提出日時 2024-12-28 08:46:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-12-28 08:46:07
合計ジャッジ時間 3,524 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 43 ms
53,248 KB
testcase_04 WA -
testcase_05 AC 42 ms
53,760 KB
testcase_06 WA -
testcase_07 AC 41 ms
53,504 KB
testcase_08 WA -
testcase_09 AC 42 ms
54,144 KB
testcase_10 AC 44 ms
54,016 KB
testcase_11 AC 42 ms
53,888 KB
testcase_12 AC 44 ms
53,760 KB
testcase_13 AC 43 ms
53,760 KB
testcase_14 AC 54 ms
54,144 KB
testcase_15 AC 42 ms
53,888 KB
testcase_16 AC 42 ms
54,016 KB
testcase_17 AC 43 ms
54,272 KB
testcase_18 AC 43 ms
53,760 KB
testcase_19 AC 43 ms
53,760 KB
testcase_20 AC 49 ms
56,812 KB
testcase_21 AC 49 ms
56,704 KB
testcase_22 AC 47 ms
55,552 KB
testcase_23 AC 48 ms
56,192 KB
testcase_24 AC 42 ms
54,272 KB
testcase_25 AC 50 ms
55,552 KB
testcase_26 AC 56 ms
61,952 KB
testcase_27 AC 46 ms
54,400 KB
testcase_28 AC 46 ms
54,784 KB
testcase_29 AC 48 ms
55,808 KB
testcase_30 AC 53 ms
62,208 KB
testcase_31 AC 46 ms
55,936 KB
testcase_32 AC 49 ms
55,936 KB
testcase_33 AC 61 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
D = sorted([int(input()) for _ in range(M)])
que = deque(D[:N])
def dist(l,r):
    if 0<=l<r:
        return r
    elif l<r<=0:
        return -l
    return r-l+min(-l,r)
ans = dist(que[0],que[-1])
for i in range(1,M-N+1):
    que.popleft()
    que.append(D[i+N-1])
    ans = min(ans,dist(que[0],que[-1]))
print(ans)
0