結果

問題 No.366 ロボットソート
ユーザー KazunKazun
提出日時 2021-01-19 22:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 903 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 62,624 KB
最終ジャッジ日時 2024-12-17 19:00:28
合計ジャッジ時間 2,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,324 KB
testcase_01 AC 37 ms
52,860 KB
testcase_02 AC 37 ms
52,708 KB
testcase_03 AC 35 ms
52,260 KB
testcase_04 AC 37 ms
52,500 KB
testcase_05 AC 39 ms
53,488 KB
testcase_06 AC 36 ms
53,864 KB
testcase_07 AC 36 ms
52,740 KB
testcase_08 AC 38 ms
53,388 KB
testcase_09 AC 37 ms
52,152 KB
testcase_10 AC 39 ms
54,020 KB
testcase_11 AC 46 ms
62,452 KB
testcase_12 AC 45 ms
62,624 KB
testcase_13 AC 40 ms
53,696 KB
testcase_14 AC 41 ms
55,600 KB
testcase_15 AC 39 ms
54,416 KB
testcase_16 AC 43 ms
60,360 KB
testcase_17 AC 44 ms
60,524 KB
testcase_18 AC 43 ms
61,184 KB
testcase_19 AC 44 ms
60,680 KB
testcase_20 AC 39 ms
53,628 KB
testcase_21 AC 45 ms
59,304 KB
testcase_22 AC 49 ms
61,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(A):
    N=len(A)
    x=0
    for i in range(N):
        for j in range(N-1):
            if A[j]>A[j+1]:
                A[j],A[j+1]=A[j+1],A[j]
                x+=1
    return x

N,K=map(int,input().split())
A=list(map(int,input().split()))

B=[[] for _ in range(K)]
t=0
for a in A:
    B[t].append(a)
    t=(t+1)%K

A.sort()

X=0
for b in B:
    X+=f(b)

B=[sorted(x)[::-1] for x in B]
C=[]
t=0
for i in range(N):
    x=B[t].pop()
    C.append(x)
    t=(t+1)%K

print(X if A==C else -1)
0