結果

問題 No.366 ロボットソート
ユーザー TawaraTawara
提出日時 2016-07-04 20:17:13
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-10-12 20:13:01
合計ジャッジ時間 4,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
11,392 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 10 ms
6,144 KB
testcase_03 AC 9 ms
6,144 KB
testcase_04 AC 11 ms
6,016 KB
testcase_05 AC 10 ms
6,016 KB
testcase_06 AC 11 ms
6,016 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 10 ms
6,144 KB
testcase_09 AC 10 ms
6,144 KB
testcase_10 AC 10 ms
6,144 KB
testcase_11 AC 11 ms
6,400 KB
testcase_12 AC 11 ms
6,272 KB
testcase_13 AC 11 ms
6,272 KB
testcase_14 AC 11 ms
6,272 KB
testcase_15 AC 11 ms
6,144 KB
testcase_16 WA -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,raw_input().split())
a = map(int,raw_input().split())
for o,(p,v) in enumerate(sorted(enumerate(a),key=lambda x:x[1])):
	a[p] = o
i = ans = 0
while i < N:
	if a[i] == i:
		i+=1
		continue
	if i-a[i] % K != 0:
		ans = -1
		break
	j=i
	while a[j] != j:
		a[j],a[j+K] = a[j+K],a[j]
		j += K
		ans += 1
print ans
0