結果

問題 No.366 ロボットソート
ユーザー H20H20
提出日時 2020-11-19 13:21:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 61,296 KB
最終ジャッジ日時 2024-07-23 10:01:42
合計ジャッジ時間 2,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,216 KB
testcase_01 AC 36 ms
52,708 KB
testcase_02 AC 36 ms
53,344 KB
testcase_03 AC 35 ms
52,280 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,380 KB
testcase_06 AC 35 ms
54,088 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,820 KB
testcase_09 WA -
testcase_10 AC 38 ms
57,916 KB
testcase_11 AC 47 ms
60,632 KB
testcase_12 AC 50 ms
61,008 KB
testcase_13 AC 40 ms
59,632 KB
testcase_14 AC 39 ms
58,104 KB
testcase_15 AC 39 ms
58,300 KB
testcase_16 AC 42 ms
60,500 KB
testcase_17 AC 45 ms
60,752 KB
testcase_18 AC 49 ms
60,768 KB
testcase_19 WA -
testcase_20 AC 37 ms
52,276 KB
testcase_21 AC 44 ms
60,372 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
A=list(map(int, input().split()))
SA = sorted(A)
cnt = 0
for i in range(N-K-1):
    for j in range(0,N-K-1):
        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