結果

問題 No.2029 Swap Min Max Min
ユーザー 👑 KazunKazun
提出日時 2022-08-05 23:03:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 113,536 KB
最終ジャッジ日時 2024-09-15 20:34:42
合計ジャッジ時間 5,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,584 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 69 ms
77,568 KB
testcase_06 AC 88 ms
96,384 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 60 ms
69,504 KB
testcase_11 WA -
testcase_12 AC 72 ms
82,304 KB
testcase_13 WA -
testcase_14 AC 103 ms
111,616 KB
testcase_15 WA -
testcase_16 AC 103 ms
112,000 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 104 ms
112,128 KB
testcase_20 AC 107 ms
113,024 KB
testcase_21 AC 106 ms
112,512 KB
testcase_22 AC 105 ms
111,872 KB
testcase_23 AC 103 ms
111,744 KB
testcase_24 AC 102 ms
112,128 KB
testcase_25 AC 101 ms
111,488 KB
testcase_26 AC 101 ms
111,488 KB
testcase_27 AC 39 ms
51,456 KB
testcase_28 AC 40 ms
51,968 KB
testcase_29 AC 38 ms
51,712 KB
testcase_30 AC 39 ms
51,712 KB
testcase_31 AC 41 ms
51,712 KB
testcase_32 WA -
testcase_33 AC 39 ms
51,712 KB
testcase_34 WA -
testcase_35 AC 39 ms
51,584 KB
testcase_36 AC 39 ms
51,584 KB
testcase_37 AC 38 ms
51,840 KB
testcase_38 AC 95 ms
105,344 KB
testcase_39 AC 99 ms
110,336 KB
testcase_40 AC 92 ms
104,832 KB
testcase_41 AC 97 ms
105,856 KB
testcase_42 AC 96 ms
105,984 KB
testcase_43 AC 97 ms
109,568 KB
testcase_44 AC 100 ms
111,360 KB
権限があれば一括ダウンロードができます

ソースコード

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:
        for i,t in enumerate(T,1):
            Y+=min(abs(2*i-t), abs(2*i-1-t))

    print(X,Y)

solve()
0