結果
問題 |
No.370 道路の掃除
|
ユーザー |
|
提出日時 | 2016-05-21 15:14:25 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 656 bytes |
コンパイル時間 | 270 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-06 17:04:33 |
合計ジャッジ時間 | 2,888 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 3 WA * 31 |
ソースコード
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+1): 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)) print(max_value * 2 + -1 * min_value) print(max_value + -1 * min_value * 2) continue if max_value < 0 and min_value < 0: ans.append(-1 * min_value) print(min(ans))