結果

問題 No.370 道路の掃除
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-26 06:36:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 61,684 KB
最終ジャッジ日時 2024-07-03 23:42:12
合計ジャッジ時間 2,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,256 KB
testcase_01 AC 38 ms
52,876 KB
testcase_02 AC 37 ms
52,832 KB
testcase_03 AC 38 ms
52,792 KB
testcase_04 AC 38 ms
52,944 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 37 ms
52,316 KB
testcase_07 AC 35 ms
52,412 KB
testcase_08 AC 33 ms
52,072 KB
testcase_09 AC 34 ms
52,320 KB
testcase_10 AC 33 ms
53,204 KB
testcase_11 AC 33 ms
53,376 KB
testcase_12 AC 33 ms
52,564 KB
testcase_13 AC 33 ms
53,080 KB
testcase_14 AC 33 ms
53,308 KB
testcase_15 AC 34 ms
52,732 KB
testcase_16 AC 34 ms
52,704 KB
testcase_17 AC 34 ms
52,328 KB
testcase_18 AC 34 ms
54,212 KB
testcase_19 AC 35 ms
52,752 KB
testcase_20 AC 43 ms
55,316 KB
testcase_21 AC 41 ms
55,008 KB
testcase_22 AC 39 ms
54,472 KB
testcase_23 AC 40 ms
54,652 KB
testcase_24 AC 35 ms
53,108 KB
testcase_25 AC 37 ms
54,984 KB
testcase_26 AC 47 ms
61,684 KB
testcase_27 AC 38 ms
53,972 KB
testcase_28 AC 40 ms
54,644 KB
testcase_29 AC 42 ms
55,176 KB
testcase_30 AC 46 ms
61,016 KB
testcase_31 AC 40 ms
54,580 KB
testcase_32 AC 43 ms
55,176 KB
testcase_33 AC 47 ms
60,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
D = [int(input()) for _ in range(M)]
D.sort()
ans = (1<<60)
M,N = N,M
for i in range(N-M+1):
    
    tmp1 = abs(D[i]) + D[i+M-1] - D[i]
    tmp2 = abs(D[i+M-1]) + D[i+M-1] - D[i]
    ans = min(ans,tmp1,tmp2)
    
print(ans)
0