結果

問題 No.370 道路の掃除
ユーザー ntudantuda
提出日時 2024-02-04 23:08:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 61,088 KB
最終ジャッジ日時 2024-09-28 11:27:29
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,940 KB
testcase_01 AC 38 ms
53,268 KB
testcase_02 AC 35 ms
52,692 KB
testcase_03 AC 34 ms
52,856 KB
testcase_04 AC 35 ms
53,320 KB
testcase_05 AC 35 ms
52,988 KB
testcase_06 AC 35 ms
52,600 KB
testcase_07 AC 35 ms
52,876 KB
testcase_08 AC 35 ms
52,532 KB
testcase_09 AC 41 ms
51,692 KB
testcase_10 AC 37 ms
52,132 KB
testcase_11 AC 36 ms
52,708 KB
testcase_12 AC 36 ms
52,400 KB
testcase_13 AC 35 ms
53,732 KB
testcase_14 AC 36 ms
52,340 KB
testcase_15 AC 36 ms
53,184 KB
testcase_16 AC 35 ms
53,304 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 38 ms
53,204 KB
testcase_20 AC 44 ms
55,132 KB
testcase_21 AC 43 ms
55,272 KB
testcase_22 AC 39 ms
55,276 KB
testcase_23 AC 42 ms
55,880 KB
testcase_24 AC 36 ms
52,772 KB
testcase_25 AC 39 ms
54,468 KB
testcase_26 AC 47 ms
60,912 KB
testcase_27 AC 41 ms
54,800 KB
testcase_28 AC 41 ms
54,652 KB
testcase_29 AC 42 ms
55,288 KB
testcase_30 AC 48 ms
60,704 KB
testcase_31 AC 41 ms
54,556 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
D = [int(input()) for _ in range(M)]
D.sort()
ans = 3 * 10 ** 4
for i in range(M - N):
    d0 = D[i]
    dn = D[i + N - 1]
    if d0 * dn < 0:
        ans = min(ans, -d0 * 2 + dn, -d0 + 2 * dn)
    else:
        ans = min(ans, max(abs(d0), abs(dn)))
print(ans)
0