結果

問題 No.2029 Swap Min Max Min
ユーザー first_vilfirst_vil
提出日時 2022-08-05 21:40:08
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 746 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 113,280 KB
最終ジャッジ日時 2024-09-15 19:58:18
合計ジャッジ時間 5,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 75 ms
81,152 KB
testcase_06 AC 96 ms
101,888 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 66 ms
72,320 KB
testcase_11 WA -
testcase_12 AC 79 ms
86,528 KB
testcase_13 WA -
testcase_14 AC 113 ms
113,152 KB
testcase_15 WA -
testcase_16 AC 112 ms
112,512 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 113 ms
112,640 KB
testcase_20 AC 113 ms
112,640 KB
testcase_21 AC 113 ms
112,640 KB
testcase_22 AC 113 ms
112,256 KB
testcase_23 AC 119 ms
112,640 KB
testcase_24 AC 116 ms
113,024 KB
testcase_25 AC 109 ms
112,896 KB
testcase_26 AC 110 ms
112,640 KB
testcase_27 AC 41 ms
52,096 KB
testcase_28 AC 44 ms
52,992 KB
testcase_29 AC 42 ms
52,480 KB
testcase_30 AC 42 ms
52,864 KB
testcase_31 AC 43 ms
53,120 KB
testcase_32 WA -
testcase_33 AC 42 ms
52,608 KB
testcase_34 AC 42 ms
52,864 KB
testcase_35 AC 42 ms
52,480 KB
testcase_36 AC 44 ms
52,736 KB
testcase_37 AC 43 ms
52,480 KB
testcase_38 AC 113 ms
113,280 KB
testcase_39 AC 109 ms
112,640 KB
testcase_40 AC 103 ms
111,744 KB
testcase_41 AC 112 ms
108,416 KB
testcase_42 AC 112 ms
108,928 KB
testcase_43 AC 109 ms
112,256 KB
testcase_44 AC 117 ms
112,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353

n = ii()
a = li()

b = [i for i in range(n) if a[i] <= n // 2]
b.sort()
c = [2 * i + 1 for i in range(n // 2)]
ans = sum([abs(x - y) for x, y in zip(b, c)])
if ~n & 1:
    c = [2 * i for i in range(n // 2)]
    ans = min(ans, sum([abs(x - y) for x, y in zip(b, c)]))
print(n // 2, ans)
0