結果

問題 No.366 ロボットソート
ユーザー yansi819yansi819
提出日時 2024-05-20 10:16:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 75,396 KB
最終ジャッジ日時 2024-05-20 10:16:54
合計ジャッジ時間 2,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,236 KB
testcase_01 AC 36 ms
52,492 KB
testcase_02 AC 36 ms
52,396 KB
testcase_03 AC 37 ms
53,268 KB
testcase_04 AC 37 ms
53,216 KB
testcase_05 AC 37 ms
52,404 KB
testcase_06 AC 36 ms
52,496 KB
testcase_07 AC 36 ms
52,328 KB
testcase_08 AC 38 ms
53,004 KB
testcase_09 AC 37 ms
53,348 KB
testcase_10 AC 40 ms
58,996 KB
testcase_11 AC 47 ms
61,004 KB
testcase_12 AC 55 ms
61,544 KB
testcase_13 AC 37 ms
54,192 KB
testcase_14 AC 36 ms
52,952 KB
testcase_15 AC 40 ms
53,076 KB
testcase_16 AC 42 ms
60,260 KB
testcase_17 AC 46 ms
60,540 KB
testcase_18 AC 46 ms
60,936 KB
testcase_19 AC 44 ms
61,960 KB
testcase_20 AC 36 ms
52,220 KB
testcase_21 AC 37 ms
52,640 KB
testcase_22 AC 84 ms
75,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
a = list(map(int, input().split()))
b = a.copy()
b.sort()
if a == b:
    print(0)
    exit()
cnt = 0
for _ in range(N - K):
    for i in range(N - K):
        if a[i] > a[i + K]:
            a[i], a[i + K] = a[i + K], a[i]
            cnt += 1
            if a == b:
                print(cnt)
                exit()
print(-1)
0