結果

問題 No.2029 Swap Min Max Min
ユーザー ああいいああいい
提出日時 2022-08-07 17:39:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 118,164 KB
最終ジャッジ日時 2024-09-17 10:33:53
合計ジャッジ時間 6,107 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,012 KB
testcase_01 AC 42 ms
52,212 KB
testcase_02 AC 41 ms
52,088 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 64 ms
81,304 KB
testcase_06 AC 83 ms
101,444 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 54 ms
72,460 KB
testcase_11 WA -
testcase_12 AC 69 ms
87,156 KB
testcase_13 WA -
testcase_14 AC 100 ms
112,172 KB
testcase_15 WA -
testcase_16 AC 100 ms
112,520 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 98 ms
111,952 KB
testcase_20 AC 102 ms
112,348 KB
testcase_21 AC 101 ms
112,344 KB
testcase_22 AC 100 ms
112,180 KB
testcase_23 AC 90 ms
110,844 KB
testcase_24 AC 90 ms
111,056 KB
testcase_25 AC 97 ms
112,816 KB
testcase_26 AC 96 ms
112,796 KB
testcase_27 AC 38 ms
53,544 KB
testcase_28 AC 38 ms
53,616 KB
testcase_29 AC 37 ms
52,344 KB
testcase_30 AC 38 ms
53,532 KB
testcase_31 AC 38 ms
53,600 KB
testcase_32 WA -
testcase_33 AC 37 ms
53,340 KB
testcase_34 WA -
testcase_35 AC 37 ms
52,428 KB
testcase_36 AC 38 ms
52,544 KB
testcase_37 AC 37 ms
51,880 KB
testcase_38 AC 83 ms
105,064 KB
testcase_39 AC 96 ms
112,228 KB
testcase_40 AC 90 ms
111,168 KB
testcase_41 AC 85 ms
105,216 KB
testcase_42 AC 86 ms
106,196 KB
testcase_43 AC 99 ms
118,164 KB
testcase_44 AC 90 ms
110,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())
A = list(map(int,input().split()))

import sys
if N % 2 == 1:
    X = N // 2
    print(N // 2,end = " ")
    l = []
    for i in range(N):
        if A[i] <= X:
            l.append(i)
    tmp = []
    for i in range(N):
        if i & 1 == 1:
            tmp.append(i)
    ans = 0
    for k in range(len(l)):
        ans += abs(l[k] - tmp[k])
    print(ans)
    exit()

X = N // 2
print(X,end = " ")
l = []
for i in range(N):
    if A[i] <= X:
        l.append(i)
ans = 0
for i in range(X):
    ans += min(abs(i * 2 - l[i]),abs(i * 2 + 1 - l[i]))
print(ans)
0