結果

問題 No.366 ロボットソート
ユーザー tookunn_1213tookunn_1213
提出日時 2016-04-29 23:36:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-06-09 10:22:59
合計ジャッジ時間 1,982 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 41 ms
52,352 KB
testcase_13 AC 41 ms
52,736 KB
testcase_14 AC 46 ms
58,112 KB
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 48 ms
58,880 KB
testcase_17 AC 51 ms
61,568 KB
testcase_18 AC 53 ms
61,056 KB
testcase_19 AC 49 ms
60,160 KB
testcase_20 AC 40 ms
52,608 KB
testcase_21 AC 42 ms
52,608 KB
testcase_22 AC 81 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(a,b,N):
	for i in range(N):
		if a[i] not in b[i % K]:
			return False
	return True
N,K = map(int,input().split())
a = [int(i) for i in input().split()]
b = [set([]) for i in range(K)]
c = sorted([i for i in a])
for i in range(N):
	b[i % K].add(c[i])
if not check(a,b,N):
	print(-1)
else:
	cnt = 0
	while True:
		flag = True
		for i in range(N - 1):
			if a[i] > a[i + 1]:
				flag = False
		if flag:
			break
		for i in range(N):
			j = i + K
			while j < N:
				if a[j - K] > a[j]:
					a[j],a[j - K] = a[j - K],a[j]
					cnt+=1
				j += K
	print (cnt)
0