結果

問題 No.366 ロボットソート
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-27 17:56:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,229 bytes
コンパイル時間 3,334 ms
コンパイル使用メモリ 77,188 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-10-07 16:30:17
合計ジャッジ時間 7,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,456 KB
testcase_01 AC 126 ms
41,040 KB
testcase_02 AC 118 ms
41,216 KB
testcase_03 WA -
testcase_04 AC 124 ms
41,908 KB
testcase_05 AC 123 ms
41,676 KB
testcase_06 AC 119 ms
41,144 KB
testcase_07 AC 120 ms
41,188 KB
testcase_08 AC 121 ms
41,260 KB
testcase_09 AC 119 ms
40,996 KB
testcase_10 AC 135 ms
42,124 KB
testcase_11 AC 178 ms
42,496 KB
testcase_12 AC 172 ms
42,208 KB
testcase_13 AC 164 ms
41,800 KB
testcase_14 AC 161 ms
41,904 KB
testcase_15 AC 150 ms
41,916 KB
testcase_16 AC 159 ms
41,984 KB
testcase_17 AC 162 ms
41,844 KB
testcase_18 AC 178 ms
42,752 KB
testcase_19 AC 166 ms
41,992 KB
testcase_20 AC 124 ms
41,444 KB
testcase_21 AC 192 ms
42,628 KB
testcase_22 AC 204 ms
42,744 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 = false;

    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