結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 53 ms
61,568 KB
testcase_12 AC 48 ms
60,928 KB
testcase_13 AC 41 ms
52,992 KB
testcase_14 AC 42 ms
53,504 KB
testcase_15 AC 43 ms
52,608 KB
testcase_16 AC 45 ms
59,648 KB
testcase_17 AC 46 ms
59,520 KB
testcase_18 AC 53 ms
60,544 KB
testcase_19 AC 51 ms
59,904 KB
testcase_20 AC 42 ms
53,632 KB
testcase_21 AC 47 ms
59,648 KB
testcase_22 AC 52 ms
61,056 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