結果

問題 No.366 ロボットソート
ユーザー yun_appyun_app
提出日時 2016-05-10 14:07:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,176 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 77,776 KB
実行使用メモリ 39,200 KB
最終ジャッジ日時 2024-06-09 10:26:42
合計ジャッジ時間 3,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,788 KB
testcase_01 AC 45 ms
36,436 KB
testcase_02 AC 46 ms
36,856 KB
testcase_03 AC 47 ms
36,976 KB
testcase_04 AC 47 ms
36,924 KB
testcase_05 AC 46 ms
37,008 KB
testcase_06 AC 47 ms
37,052 KB
testcase_07 AC 50 ms
36,860 KB
testcase_08 AC 49 ms
36,848 KB
testcase_09 AC 48 ms
36,796 KB
testcase_10 AC 53 ms
36,912 KB
testcase_11 AC 67 ms
37,904 KB
testcase_12 AC 81 ms
38,356 KB
testcase_13 AC 49 ms
37,008 KB
testcase_14 AC 49 ms
37,200 KB
testcase_15 AC 48 ms
36,796 KB
testcase_16 AC 52 ms
36,880 KB
testcase_17 AC 62 ms
38,224 KB
testcase_18 AC 94 ms
38,664 KB
testcase_19 AC 83 ms
38,400 KB
testcase_20 AC 50 ms
36,536 KB
testcase_21 AC 52 ms
36,960 KB
testcase_22 AC 235 ms
39,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().split(" ");
        int n = Integer.parseInt(lines[0]);
        int k = Integer.parseInt(lines[1]);
        lines = br.readLine().split(" ");
        
        int[] arr = new int[n];
        int idx = 0;
        for(String st:lines){
            arr[idx++] = Integer.parseInt(st);
        }

        int tmp,ans = 0;
        for(int i=0;i<n-k;i++){
            if(arr[i] > arr[i+k]){
                tmp = arr[i];
                arr[i] = arr[i+k];
                arr[i+k] = tmp;
                i=-1;
                ++ans;
            }
        }
        tmp = -1;
        for(int i:arr){
            if(tmp>i){
                ans = -1;
                break;
            }
            tmp = i;
        }
        System.out.println(ans);
    }
}
0