結果

問題 No.2029 Swap Min Max Min
ユーザー first_vilfirst_vil
提出日時 2022-08-05 21:38:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 626 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 113,536 KB
最終ジャッジ日時 2024-09-15 19:57:43
合計ジャッジ時間 5,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 73 ms
81,536 KB
testcase_06 AC 94 ms
102,272 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 64 ms
72,320 KB
testcase_11 WA -
testcase_12 AC 78 ms
86,528 KB
testcase_13 WA -
testcase_14 AC 113 ms
112,256 KB
testcase_15 WA -
testcase_16 AC 112 ms
113,024 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 114 ms
112,640 KB
testcase_20 AC 113 ms
113,152 KB
testcase_21 AC 114 ms
112,640 KB
testcase_22 AC 114 ms
112,896 KB
testcase_23 WA -
testcase_24 AC 110 ms
113,152 KB
testcase_25 AC 110 ms
112,640 KB
testcase_26 AC 111 ms
112,768 KB
testcase_27 WA -
testcase_28 AC 43 ms
52,736 KB
testcase_29 AC 43 ms
52,736 KB
testcase_30 AC 43 ms
52,736 KB
testcase_31 AC 43 ms
52,352 KB
testcase_32 WA -
testcase_33 AC 42 ms
52,096 KB
testcase_34 WA -
testcase_35 AC 42 ms
52,096 KB
testcase_36 AC 41 ms
52,608 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 108 ms
112,896 KB
testcase_40 AC 102 ms
112,128 KB
testcase_41 AC 104 ms
108,416 KB
testcase_42 AC 104 ms
108,672 KB
testcase_43 AC 107 ms
112,512 KB
testcase_44 AC 108 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)]
print(n // 2, sum([abs(x - y) for x, y in zip(b, c)]))
0