結果

問題 No.366 ロボットソート
ユーザー jp_stejp_ste
提出日時 2016-05-10 09:55:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 1,149 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 77,604 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-06-09 10:26:34
合計ジャッジ時間 5,671 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,144 KB
testcase_01 AC 114 ms
54,128 KB
testcase_02 AC 115 ms
54,100 KB
testcase_03 AC 111 ms
53,868 KB
testcase_04 AC 113 ms
53,956 KB
testcase_05 AC 111 ms
53,972 KB
testcase_06 AC 95 ms
39,988 KB
testcase_07 AC 115 ms
41,200 KB
testcase_08 AC 111 ms
41,060 KB
testcase_09 AC 110 ms
40,868 KB
testcase_10 AC 127 ms
41,420 KB
testcase_11 AC 157 ms
42,424 KB
testcase_12 AC 175 ms
42,260 KB
testcase_13 AC 138 ms
42,104 KB
testcase_14 AC 152 ms
42,204 KB
testcase_15 AC 148 ms
41,876 KB
testcase_16 AC 155 ms
41,948 KB
testcase_17 AC 149 ms
42,144 KB
testcase_18 AC 176 ms
42,208 KB
testcase_19 AC 166 ms
41,984 KB
testcase_20 AC 113 ms
40,276 KB
testcase_21 AC 188 ms
42,444 KB
testcase_22 AC 182 ms
42,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int n = scan.nextInt();
            int k = scan.nextInt();
            int list[] = new int[n];
            for(int i=0; i<n; i++) {
                list[i] = scan.nextInt();
            }
            
            int ans = 0;
            int m = n;
            while(m > 0) {
                for(int g=0; g<k; g++) {
                    for(int p=g; p+k<m; p+=k) {
                        if(list[p] > list[p+k]) {
                            int w = list[p];
                            list[p] = list[p+k];
                            list[p+k] = w;
                            ans++;
                        }
                    }
                }
                m -= k;
            }
                        
            boolean flag = true; 
            for(int i=0; i<n-1; i++) {
                if(list[i] > list[i+1]) {
                    flag = false;
                    break;
                }
            }
            System.out.println(flag? ans : -1);
        }
    }
}
0