結果

問題 No.366 ロボットソート
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-07 15:32:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 3,591 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-06-09 10:25:38
合計ジャッジ時間 8,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,892 KB
testcase_01 AC 135 ms
53,916 KB
testcase_02 AC 135 ms
53,956 KB
testcase_03 AC 133 ms
54,096 KB
testcase_04 AC 134 ms
53,800 KB
testcase_05 AC 134 ms
54,092 KB
testcase_06 AC 132 ms
53,936 KB
testcase_07 AC 134 ms
54,384 KB
testcase_08 AC 137 ms
54,016 KB
testcase_09 AC 134 ms
53,796 KB
testcase_10 AC 144 ms
53,836 KB
testcase_11 AC 195 ms
54,036 KB
testcase_12 AC 180 ms
53,972 KB
testcase_13 AC 153 ms
54,320 KB
testcase_14 AC 164 ms
53,868 KB
testcase_15 AC 150 ms
54,480 KB
testcase_16 AC 159 ms
54,312 KB
testcase_17 AC 182 ms
53,964 KB
testcase_18 AC 176 ms
54,204 KB
testcase_19 AC 172 ms
54,132 KB
testcase_20 AC 127 ms
53,960 KB
testcase_21 AC 175 ms
54,116 KB
testcase_22 AC 175 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki_coder;

import java.util.Scanner;

public class No_366 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	String S1 = sc.nextLine();
	String S2 = sc.nextLine();
	String[] sn = S1.split(" ", -1);
	String[] sn2 = S2.split(" ", -1);
	int[] n = new int[2];
	for(int i = 0; i < 2; i++){//int型に変換
		n[i] = Integer.parseInt(sn[i]);
	}
	long[] val = new long[n[0]];
	for(int i = 0; i < n[0]; i++){//int型に変換
		val[i] = Integer.parseInt(sn2[i]);
	}
	int Output = 0;//出力
	int MVal = n[0] - n[1] - 1;
	flag: for(int i = 0; i <= n[0]; i++){
				for(int j = 0; j <= MVal; j++){
					if(0 > MVal){
						break flag;
		}
		if(val[j] > val[j + n[1]]){//ソート
			long memory = val[j];
			val[j] = val[j + n[1]];
			val[j + n[1]] = memory;
			Output++;
					}
			}
	}
	for(int i = 1; i < n[0]; i++){//数字のソートの確認
		if(val[i - 1] > val[i]){
			Output = -1;
			break;
		}
	}
	System.out.println(Output);
}
}
0