結果

問題 No.366 ロボットソート
ユーザー convexineqconvexineq
提出日時 2021-01-02 15:53:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 62,832 KB
最終ジャッジ日時 2024-04-20 09:19:35
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,500 KB
testcase_01 AC 32 ms
52,140 KB
testcase_02 AC 33 ms
52,944 KB
testcase_03 AC 33 ms
54,100 KB
testcase_04 AC 34 ms
52,880 KB
testcase_05 AC 34 ms
51,880 KB
testcase_06 AC 34 ms
53,616 KB
testcase_07 AC 34 ms
52,820 KB
testcase_08 AC 33 ms
52,076 KB
testcase_09 AC 33 ms
52,732 KB
testcase_10 AC 32 ms
53,476 KB
testcase_11 AC 44 ms
61,084 KB
testcase_12 AC 40 ms
60,684 KB
testcase_13 AC 34 ms
53,176 KB
testcase_14 AC 35 ms
54,396 KB
testcase_15 AC 34 ms
53,076 KB
testcase_16 AC 40 ms
60,768 KB
testcase_17 AC 39 ms
61,484 KB
testcase_18 AC 42 ms
62,832 KB
testcase_19 AC 41 ms
62,480 KB
testcase_20 AC 34 ms
54,360 KB
testcase_21 AC 38 ms
59,928 KB
testcase_22 AC 37 ms
59,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,*a = map(int,open(0).read().split())
ans = 0
for i in range(k):
    for x in range(i,n,k):
        for y in range(x+k,n,k):
            if a[x] > a[y]:
                ans += 1
    a[i:n:k] = sorted(a[i:n:k])
print(ans if a == list(sorted(a)) else -1)
0