結果

問題 No.2029 Swap Min Max Min
ユーザー asumo0729asumo0729
提出日時 2022-08-05 21:53:23
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 675 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 114,048 KB
最終ジャッジ日時 2024-09-15 20:01:21
合計ジャッジ時間 5,026 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 64 ms
78,720 KB
testcase_06 AC 80 ms
96,000 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 54 ms
70,528 KB
testcase_11 WA -
testcase_12 AC 67 ms
83,200 KB
testcase_13 WA -
testcase_14 AC 100 ms
112,640 KB
testcase_15 WA -
testcase_16 AC 95 ms
111,624 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 98 ms
113,280 KB
testcase_20 AC 99 ms
112,872 KB
testcase_21 AC 100 ms
113,280 KB
testcase_22 AC 93 ms
111,360 KB
testcase_23 AC 99 ms
113,792 KB
testcase_24 AC 100 ms
113,792 KB
testcase_25 AC 93 ms
112,128 KB
testcase_26 AC 93 ms
111,872 KB
testcase_27 AC 39 ms
51,712 KB
testcase_28 AC 40 ms
52,736 KB
testcase_29 AC 37 ms
51,840 KB
testcase_30 AC 39 ms
52,096 KB
testcase_31 AC 38 ms
51,840 KB
testcase_32 WA -
testcase_33 AC 39 ms
51,584 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 38 ms
52,224 KB
testcase_36 AC 38 ms
51,584 KB
testcase_37 AC 39 ms
51,712 KB
testcase_38 AC 90 ms
106,496 KB
testcase_39 AC 92 ms
111,104 KB
testcase_40 AC 87 ms
104,704 KB
testcase_41 AC 90 ms
107,520 KB
testcase_42 AC 91 ms
107,940 KB
testcase_43 AC 90 ms
109,824 KB
testcase_44 AC 99 ms
114,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
if  N & 1:
    NN = N // 2
    idx = [i * 2 + 1 for i in range(NN)]
    idx1 = []
    for i in range(N):
        if A[i] <= NN:
            idx1.append(i)
    ans = 0
    for i in range(NN):
        ans += abs(idx[i] - idx1[i])

else:
    NN = N // 2
    idx1 = [i * 2 for i in range(NN)]
    idx2 = [i * 2 + 1 for i in range(NN)]
    idx3 = []
    for i in range(N):
        if A[i] <= NN:
            idx3.append(i)
    ans1 = 0
    for i in range(NN):
        ans1 += abs(idx3[i] - idx1[i])
    
    ans2 = 0
    for i in range(NN):
        ans2 += abs(idx3[i] - idx2[i])
    ans = min(ans1, ans2)
print(NN, ans)
exit()
0