結果

問題 No.366 ロボットソート
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-27 17:58:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,220 bytes
コンパイル時間 2,890 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 42,320 KB
最終ジャッジ日時 2024-06-09 10:27:47
合計ジャッジ時間 6,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,432 KB
testcase_01 AC 110 ms
41,396 KB
testcase_02 AC 100 ms
41,152 KB
testcase_03 AC 114 ms
41,404 KB
testcase_04 AC 101 ms
41,160 KB
testcase_05 AC 115 ms
41,200 KB
testcase_06 AC 113 ms
40,892 KB
testcase_07 AC 103 ms
41,328 KB
testcase_08 AC 116 ms
41,160 KB
testcase_09 AC 104 ms
41,184 KB
testcase_10 AC 135 ms
41,552 KB
testcase_11 AC 161 ms
41,968 KB
testcase_12 AC 169 ms
42,220 KB
testcase_13 AC 154 ms
41,684 KB
testcase_14 AC 168 ms
42,124 KB
testcase_15 AC 147 ms
41,444 KB
testcase_16 AC 149 ms
41,804 KB
testcase_17 AC 158 ms
42,068 KB
testcase_18 AC 173 ms
42,208 KB
testcase_19 AC 156 ms
41,884 KB
testcase_20 AC 98 ms
41,020 KB
testcase_21 AC 182 ms
42,316 KB
testcase_22 AC 184 ms
42,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercises22{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int size = sc.nextInt();
    int armWidth = sc.nextInt();

    int[] array = new int[size];

    for (int n = 0; n < size; n++){
      array[n] = sc.nextInt();
    }

    int count = 0;
    boolean flag = true;

    for (int a = 0; a < armWidth; a++){
      for (int k = a; k < getLastIndex(a, size, armWidth); k += armWidth){
        for(int i = getLastIndex(a, size, armWidth); k < i; i -= armWidth){
          if (array[i] < array[i - armWidth]){
            int w = array[i];
            array[i] = array[i - armWidth];
            array[i - armWidth] = w;
            count++;
          }
        }
      }
    }

    for (int n = 1; n < size; n++){
      if (array[n - 1] <= array[n]){
        flag = true;

      }else{
        flag = false;
        break;
      }
    }

    if(flag == true){
      System.out.println(count);
    }else{
      System.out.println(-1);
    }
  }

  private static int getLastIndex(int a, int size, int armWidth){
    int extr = 0;
    if (size % armWidth > a){
      extr = 1;
    }
    return (size / armWidth - 1 + extr) * armWidth + a;
  }
}
0