結果

問題 No.366 ロボットソート
ユーザー tentententen
提出日時 2020-11-18 09:33:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-07-23 08:52:23
合計ジャッジ時間 6,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,984 KB
testcase_01 AC 133 ms
53,880 KB
testcase_02 AC 134 ms
54,084 KB
testcase_03 AC 132 ms
54,064 KB
testcase_04 AC 133 ms
54,000 KB
testcase_05 AC 132 ms
54,004 KB
testcase_06 AC 133 ms
54,152 KB
testcase_07 AC 134 ms
54,012 KB
testcase_08 AC 137 ms
54,344 KB
testcase_09 AC 134 ms
53,916 KB
testcase_10 AC 147 ms
54,120 KB
testcase_11 AC 191 ms
54,088 KB
testcase_12 AC 198 ms
54,440 KB
testcase_13 AC 183 ms
54,232 KB
testcase_14 AC 186 ms
54,208 KB
testcase_15 AC 164 ms
54,176 KB
testcase_16 AC 181 ms
54,368 KB
testcase_17 AC 183 ms
54,012 KB
testcase_18 AC 196 ms
54,376 KB
testcase_19 AC 177 ms
54,396 KB
testcase_20 AC 133 ms
53,912 KB
testcase_21 AC 209 ms
54,596 KB
testcase_22 AC 209 ms
54,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        int count = 0;
        for (int i = 0; i < k; i++) {
            for (int j = n; i + k < j; j -= k) {
                for (int a = i; a + k < j; a += k) {
                    if (arr[a] > arr[a + k]) {
                        int tmp = arr[a];
                        arr[a] = arr[a + k];
                        arr[a + k] = tmp;
                        count++;
                    }
                }
            }
        }
        for (int i = 0; i < n - 1; i++) {
            if (arr[i] > arr[i + 1]) {
                System.out.println(-1);
                return;
            }
        }
        System.out.println(count);
    }
}
0