結果

問題 No.2029 Swap Min Max Min
ユーザー ShirotsumeShirotsume
提出日時 2022-07-04 01:10:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,324 KB
最終ジャッジ日時 2024-09-15 19:55:20
合計ジャッジ時間 5,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 65 ms
17,028 KB
testcase_06 AC 99 ms
23,836 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 49 ms
14,268 KB
testcase_11 WA -
testcase_12 AC 75 ms
19,752 KB
testcase_13 WA -
testcase_14 AC 133 ms
30,172 KB
testcase_15 WA -
testcase_16 AC 130 ms
29,428 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 130 ms
29,696 KB
testcase_20 AC 134 ms
30,072 KB
testcase_21 AC 134 ms
29,816 KB
testcase_22 AC 131 ms
29,552 KB
testcase_23 AC 151 ms
29,428 KB
testcase_24 AC 147 ms
29,432 KB
testcase_25 AC 133 ms
29,296 KB
testcase_26 AC 131 ms
29,292 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 31 ms
10,752 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 WA -
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 31 ms
10,496 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 135 ms
26,716 KB
testcase_39 AC 132 ms
29,812 KB
testcase_40 AC 122 ms
27,884 KB
testcase_41 AC 141 ms
28,704 KB
testcase_42 AC 138 ms
29,124 KB
testcase_43 AC 125 ms
29,344 KB
testcase_44 AC 146 ms
30,324 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 = min(y1, y2)
    return x, y

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

print(*solve(n, a))
0