結果

問題 No.482 あなたの名は
ユーザー htensaihtensai
提出日時 2020-02-14 11:59:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 77,436 KB
実行使用メモリ 88,532 KB
最終ジャッジ日時 2024-10-06 07:51:25
合計ジャッジ時間 20,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,908 KB
testcase_01 AC 121 ms
53,820 KB
testcase_02 AC 119 ms
53,952 KB
testcase_03 AC 118 ms
54,052 KB
testcase_04 AC 124 ms
54,248 KB
testcase_05 WA -
testcase_06 AC 121 ms
54,040 KB
testcase_07 AC 170 ms
54,236 KB
testcase_08 AC 165 ms
54,700 KB
testcase_09 AC 132 ms
54,048 KB
testcase_10 AC 174 ms
54,400 KB
testcase_11 AC 174 ms
54,316 KB
testcase_12 AC 185 ms
54,560 KB
testcase_13 AC 175 ms
54,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,055 ms
88,444 KB
testcase_17 AC 969 ms
86,972 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 964 ms
88,148 KB
testcase_25 AC 997 ms
88,272 KB
testcase_26 WA -
testcase_27 AC 858 ms
87,112 KB
testcase_28 AC 961 ms
88,112 KB
testcase_29 AC 821 ms
86,708 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
		HashMap<Integer, Integer> map = new HashMap<>();
		for (int i = 1; i <= n; i++) {
		    arr[i] = sc.nextInt();
		    map.put(arr[i], i);
		}
		int count = 0;
		for (int i = 1; i <= n; i++) {
		    int x = map.get(i);
		    if (i == x) {
		        continue;
		    }
		    count++;
		    arr[x] = arr[i];
		    map.put(x, arr[i]);
		}
		if (k >= count && (k - count) % 2 == 0) {
		    System.out.println("YES");
		} else {
		    System.out.println("NO");
		}
  }
}
0