結果

問題 No.366 ロボットソート
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-07 16:49:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 4,001 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 42,636 KB
最終ジャッジ日時 2024-06-09 10:25:56
合計ジャッジ時間 7,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,948 KB
testcase_01 AC 123 ms
41,184 KB
testcase_02 AC 126 ms
41,276 KB
testcase_03 AC 128 ms
41,184 KB
testcase_04 AC 116 ms
39,976 KB
testcase_05 AC 113 ms
40,264 KB
testcase_06 AC 128 ms
41,276 KB
testcase_07 AC 131 ms
40,932 KB
testcase_08 AC 113 ms
40,032 KB
testcase_09 AC 128 ms
41,404 KB
testcase_10 AC 147 ms
41,420 KB
testcase_11 AC 201 ms
41,992 KB
testcase_12 AC 199 ms
42,236 KB
testcase_13 AC 170 ms
41,504 KB
testcase_14 AC 177 ms
41,776 KB
testcase_15 AC 151 ms
41,488 KB
testcase_16 AC 178 ms
42,000 KB
testcase_17 AC 186 ms
41,820 KB
testcase_18 AC 206 ms
42,304 KB
testcase_19 AC 195 ms
42,052 KB
testcase_20 AC 131 ms
41,196 KB
testcase_21 AC 209 ms
42,636 KB
testcase_22 AC 204 ms
42,016 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);
	int N = sc.nextInt();
	int K = sc.nextInt();
	long[] val = new long[N];
	for(int i = 0; i < N; i++){
		val[i] = sc.nextLong();
	}
	int c = 0;
	int MV = N - K - 1;
	flag: for(int i = 0; i <= MV; i++){
				for(int j = 0; j <= MV; j++){
					if(0 > MV){
						break flag;
		}
		if(val[j] > val[j + K]){
			long tmp = val[j];
			val[j] = val[j + K];
			val[j + K] = tmp;
			c++;
					}
			}
	}
	for(int i = 1; i < N; i++){
		if(val[i - 1] > val[i]){
			c = -1;
			break;
		}
	}
	System.out.println(c);
}
}
0