結果

問題 No.366 ロボットソート
ユーザー H20H20
提出日時 2020-11-19 13:22:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 61,536 KB
最終ジャッジ日時 2024-07-23 10:01:45
合計ジャッジ時間 1,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,464 KB
testcase_01 AC 37 ms
53,792 KB
testcase_02 AC 37 ms
52,400 KB
testcase_03 AC 36 ms
53,036 KB
testcase_04 AC 36 ms
52,176 KB
testcase_05 AC 35 ms
52,404 KB
testcase_06 AC 36 ms
52,332 KB
testcase_07 AC 37 ms
52,428 KB
testcase_08 AC 37 ms
52,528 KB
testcase_09 AC 37 ms
52,900 KB
testcase_10 AC 39 ms
58,692 KB
testcase_11 AC 46 ms
61,120 KB
testcase_12 AC 49 ms
60,956 KB
testcase_13 AC 40 ms
58,172 KB
testcase_14 AC 39 ms
58,844 KB
testcase_15 AC 40 ms
59,616 KB
testcase_16 AC 42 ms
59,916 KB
testcase_17 AC 44 ms
60,132 KB
testcase_18 AC 50 ms
60,992 KB
testcase_19 AC 44 ms
60,048 KB
testcase_20 AC 36 ms
52,604 KB
testcase_21 AC 43 ms
59,524 KB
testcase_22 AC 45 ms
61,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
A=list(map(int, input().split()))
SA = sorted(A)
cnt = 0
for i in range(N-K):
    for j in range(0,N-K):
        if A[j] > A[j+K]:
            A[j],A[j+K]=A[j+K],A[j]
            cnt+=1
for i in range(N):
    if SA[i]!=A[i]:
        print(-1)
        exit()
print(cnt)



0