結果
問題 | No.370 道路の掃除 |
ユーザー | g-tetsuya |
提出日時 | 2016-05-21 13:56:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-10-06 16:36:37 |
合計ジャッジ時間 | 3,004 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,624 KB |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 31 ms
10,624 KB |
testcase_13 | WA | - |
testcase_14 | AC | 31 ms
10,624 KB |
testcase_15 | WA | - |
testcase_16 | AC | 31 ms
10,752 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
import math def min_len(pos, Ds, N): length = max([math.fabs(i) for i in Ds]) next_i = 0 for i in range(len(Ds)): tmp_length = math.fabs(pos - Ds[i]) if length > tmp_length: length = tmp_length next_i = i if N == 1: return int(length) next_pos = Ds[next_i] Ds.pop(next_i) return int(length) + min_len(next_pos, Ds, N-1) str_N, str_M = input().split(" ") N = int(str_N) M = int(str_M) Ds = [] for i in range(M): Ds.append(int(input())) print(min_len(0, Ds, N))