結果

問題 No.482 あなたの名は
ユーザー YamaKasaYamaKasa
提出日時 2018-09-23 15:03:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 708 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 75,004 KB
実行使用メモリ 69,308 KB
最終ジャッジ日時 2024-09-14 00:23:18
合計ジャッジ時間 30,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,104 KB
testcase_01 AC 135 ms
53,856 KB
testcase_02 AC 133 ms
54,112 KB
testcase_03 AC 133 ms
54,100 KB
testcase_04 AC 134 ms
53,964 KB
testcase_05 AC 135 ms
53,840 KB
testcase_06 AC 132 ms
53,844 KB
testcase_07 AC 196 ms
54,460 KB
testcase_08 AC 187 ms
54,212 KB
testcase_09 AC 148 ms
54,180 KB
testcase_10 AC 172 ms
53,976 KB
testcase_11 AC 191 ms
54,168 KB
testcase_12 AC 194 ms
54,192 KB
testcase_13 AC 186 ms
54,368 KB
testcase_14 AC 182 ms
54,208 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		long K = scan.nextInt();
		int[]D = new int[N];
		for(int i = 0; i < N; i++) {
			D[i] = scan.nextInt();
		}
		scan.close();
		long cnt = 0;
		for(int i = 0; i < N; i++) {
			if(D[i] == i + 1) {
				continue;
			}
			for(int j = i + 1; j < N; j++) {
				if(D[j] == i + 1) {
					int v = D[i];
					D[i] = i + 1;
					D[j] = v;
					cnt ++;
					break;
				}
			}

		}

		if(cnt > K) {
			System.out.println("NO");
		}else {
			long t = K - cnt;
			if(t % 2 == 0) {
				System.out.println("YES");
			}else {
				System.out.println("NO");
			}
		}
	}
}
0