結果

問題 No.366 ロボットソート
ユーザー mlihua09mlihua09
提出日時 2020-09-20 08:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 61,304 KB
最終ジャッジ日時 2024-06-24 10:38:57
合計ジャッジ時間 2,243 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,860 KB
testcase_01 AC 39 ms
51,944 KB
testcase_02 AC 38 ms
52,580 KB
testcase_03 AC 39 ms
52,204 KB
testcase_04 AC 39 ms
52,164 KB
testcase_05 AC 44 ms
52,168 KB
testcase_06 AC 39 ms
52,436 KB
testcase_07 AC 38 ms
52,872 KB
testcase_08 AC 38 ms
52,380 KB
testcase_09 AC 39 ms
52,500 KB
testcase_10 AC 39 ms
52,876 KB
testcase_11 AC 39 ms
52,428 KB
testcase_12 AC 39 ms
53,316 KB
testcase_13 AC 38 ms
53,476 KB
testcase_14 AC 40 ms
54,116 KB
testcase_15 AC 39 ms
52,428 KB
testcase_16 AC 39 ms
53,152 KB
testcase_17 AC 43 ms
58,344 KB
testcase_18 AC 45 ms
59,780 KB
testcase_19 AC 46 ms
59,652 KB
testcase_20 AC 39 ms
52,600 KB
testcase_21 AC 39 ms
53,436 KB
testcase_22 AC 47 ms
61,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

B = A.copy()
B.sort()
ans = 0

for i in range(N):
    
    if A[i] != B[i]:
        
        x = A[i]
        for j in range(i + K, N, K):
            if A[j] == B[i]:
                A[j] = x
                A[i] = B[i]
                ans += 1
                break
            
            else:
                A[j], x = x, A[j]
                ans += 1
        
        if A[i] != B[i]:
            print(-1)
            exit()
            
print(ans)
        
0