結果

問題 No.2029 Swap Min Max Min
ユーザー 👑 KazunKazun
提出日時 2022-08-05 23:10:32
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 343 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 114,176 KB
最終ジャッジ日時 2024-09-15 20:43:25
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 70 ms
78,080 KB
testcase_06 AC 89 ms
95,488 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 62 ms
69,504 KB
testcase_11 RE -
testcase_12 AC 75 ms
82,432 KB
testcase_13 RE -
testcase_14 AC 111 ms
112,384 KB
testcase_15 RE -
testcase_16 AC 111 ms
111,744 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 110 ms
111,872 KB
testcase_20 AC 110 ms
112,640 KB
testcase_21 AC 109 ms
112,000 KB
testcase_22 AC 109 ms
111,360 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 107 ms
111,872 KB
testcase_26 AC 107 ms
111,616 KB
testcase_27 RE -
testcase_28 AC 42 ms
52,096 KB
testcase_29 AC 41 ms
51,968 KB
testcase_30 AC 41 ms
51,584 KB
testcase_31 AC 42 ms
52,224 KB
testcase_32 RE -
testcase_33 AC 40 ms
51,968 KB
testcase_34 RE -
testcase_35 AC 42 ms
51,584 KB
testcase_36 AC 41 ms
51,840 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 104 ms
110,208 KB
testcase_40 AC 99 ms
104,960 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 104 ms
110,464 KB
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())
    A=[-1]+list(map(int,input().split()))

    X=N//2; Y=0

    T=[i for i in range(1,N+1) if A[i]<=X]

    if N%2==1:
        for i,t in enumerate(T,1):
            Y+=abs(2*i-t)
    else:
        assert 0
        for i,t in enumerate(T,1):
            Y+=min(abs(2*i-t), abs(2*i-1-t))

    print(X,Y)

solve()
0