結果

問題 No.2029 Swap Min Max Min
ユーザー ntudantuda
提出日時 2022-08-09 23:30:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 104,652 KB
最終ジャッジ日時 2024-09-20 04:25:41
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 37 ms
53,280 KB
testcase_02 AC 37 ms
52,684 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 56 ms
74,784 KB
testcase_06 AC 71 ms
90,292 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 49 ms
68,560 KB
testcase_11 WA -
testcase_12 AC 60 ms
79,076 KB
testcase_13 WA -
testcase_14 AC 86 ms
103,396 KB
testcase_15 WA -
testcase_16 AC 83 ms
104,328 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 84 ms
103,120 KB
testcase_20 AC 86 ms
104,048 KB
testcase_21 AC 85 ms
104,004 KB
testcase_22 AC 85 ms
103,472 KB
testcase_23 AC 82 ms
103,312 KB
testcase_24 AC 81 ms
103,992 KB
testcase_25 AC 81 ms
104,652 KB
testcase_26 AC 81 ms
104,420 KB
testcase_27 AC 37 ms
53,008 KB
testcase_28 AC 38 ms
52,968 KB
testcase_29 AC 37 ms
53,876 KB
testcase_30 AC 37 ms
53,420 KB
testcase_31 AC 38 ms
52,772 KB
testcase_32 WA -
testcase_33 AC 37 ms
53,092 KB
testcase_34 WA -
testcase_35 AC 37 ms
51,756 KB
testcase_36 AC 37 ms
52,516 KB
testcase_37 AC 37 ms
52,000 KB
testcase_38 AC 78 ms
98,156 KB
testcase_39 AC 79 ms
102,036 KB
testcase_40 AC 76 ms
97,480 KB
testcase_41 AC 78 ms
98,696 KB
testcase_42 AC 76 ms
99,376 KB
testcase_43 AC 79 ms
102,152 KB
testcase_44 AC 80 ms
103,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
X = N // 2
if N & 1:
    st = 1
    Y = 0
    for i,a in enumerate(A):
        if a <= X:
            Y += abs(st-i)
            st += 2
else:
    st = 0
    Y = 0
    for i,a in enumerate(A):
        if a <= X:
            Y += min(abs(st-i),abs(st+1-i))
            st += 2
print(X,Y)
0