結果

問題 No.482 あなたの名は
ユーザー htensaihtensai
提出日時 2020-05-07 15:45:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 65,388 KB
最終ジャッジ日時 2024-07-03 09:26:17
合計ジャッジ時間 16,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,164 KB
testcase_01 AC 126 ms
54,180 KB
testcase_02 AC 113 ms
52,944 KB
testcase_03 AC 119 ms
53,800 KB
testcase_04 AC 123 ms
53,640 KB
testcase_05 AC 114 ms
53,468 KB
testcase_06 AC 123 ms
54,076 KB
testcase_07 AC 172 ms
54,364 KB
testcase_08 AC 170 ms
54,276 KB
testcase_09 AC 124 ms
53,244 KB
testcase_10 AC 168 ms
54,164 KB
testcase_11 AC 160 ms
54,144 KB
testcase_12 AC 171 ms
54,260 KB
testcase_13 AC 162 ms
54,020 KB
testcase_14 AC 165 ms
54,224 KB
testcase_15 AC 730 ms
63,292 KB
testcase_16 AC 711 ms
64,244 KB
testcase_17 AC 742 ms
63,636 KB
testcase_18 AC 716 ms
64,236 KB
testcase_19 AC 740 ms
63,492 KB
testcase_20 AC 711 ms
64,340 KB
testcase_21 AC 710 ms
64,256 KB
testcase_22 AC 753 ms
64,208 KB
testcase_23 AC 664 ms
63,780 KB
testcase_24 AC 722 ms
63,736 KB
testcase_25 AC 700 ms
63,844 KB
testcase_26 AC 715 ms
63,736 KB
testcase_27 AC 712 ms
64,368 KB
testcase_28 AC 688 ms
63,776 KB
testcase_29 AC 640 ms
65,388 KB
testcase_30 AC 119 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long k = sc.nextLong();
		int[] arr = new int[n + 1];
		for (int i = 1; i <= n; i++) {
		    arr[i] = sc.nextInt();
		}
		for (int i = 1; i <= n; i++) {
		    while (arr[i] != i) {
		        int idx = arr[i];
		        arr[i] = arr[idx];
		        arr[idx] = idx;
		        k--;
		    }
		}
		if (k >= 0 && k % 2 == 0) {
		    System.out.println("YES");
		} else {
		    System.out.println("NO");
		}
	}
}
0