結果

問題 No.2029 Swap Min Max Min
ユーザー ShirotsumeShirotsume
提出日時 2022-06-14 23:08:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,256 KB
最終ジャッジ日時 2024-09-15 19:53:58
合計ジャッジ時間 5,187 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 67 ms
77,440 KB
testcase_06 AC 85 ms
94,464 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 60 ms
69,504 KB
testcase_11 WA -
testcase_12 AC 73 ms
81,920 KB
testcase_13 WA -
testcase_14 AC 104 ms
109,952 KB
testcase_15 WA -
testcase_16 AC 103 ms
109,824 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 102 ms
110,080 KB
testcase_20 AC 107 ms
111,872 KB
testcase_21 AC 103 ms
110,464 KB
testcase_22 AC 102 ms
110,208 KB
testcase_23 WA -
testcase_24 AC 99 ms
110,336 KB
testcase_25 AC 99 ms
110,592 KB
testcase_26 AC 97 ms
110,720 KB
testcase_27 WA -
testcase_28 AC 41 ms
52,224 KB
testcase_29 AC 40 ms
51,328 KB
testcase_30 AC 39 ms
51,584 KB
testcase_31 AC 40 ms
51,840 KB
testcase_32 WA -
testcase_33 AC 38 ms
51,584 KB
testcase_34 WA -
testcase_35 AC 39 ms
51,968 KB
testcase_36 AC 39 ms
51,968 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 97 ms
109,056 KB
testcase_40 AC 92 ms
103,936 KB
testcase_41 AC 93 ms
104,320 KB
testcase_42 AC 93 ms
104,576 KB
testcase_43 AC 97 ms
108,416 KB
testcase_44 AC 99 ms
110,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, a):
    x = n // 2
    y = 0
    ind = []
    for i in range(n):
        if a[i] <= x:
            ind.append(i)
    if n % 2 == 1:
        for i, v in enumerate(ind):
            y += abs(v - (2 * i + 1))
    else:
        y1 = 0
        y2 = 0
        for i, v in enumerate(ind):
            y1 += abs(v - (2 * i + 1))
            y2 += abs(v - 2 * i)
        y = y1
    return x, y

n = int(input())
a = list(map(int,input().split()))

print(*solve(n, a))
0