結果

問題 No.482 あなたの名は
ユーザー htensaihtensai
提出日時 2020-02-05 14:06:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 67,508 KB
最終ジャッジ日時 2024-09-22 12:07:11
合計ジャッジ時間 18,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
52,740 KB
testcase_01 AC 128 ms
54,140 KB
testcase_02 AC 129 ms
54,176 KB
testcase_03 AC 128 ms
53,840 KB
testcase_04 AC 127 ms
54,148 KB
testcase_05 AC 127 ms
53,932 KB
testcase_06 AC 128 ms
54,212 KB
testcase_07 AC 177 ms
54,260 KB
testcase_08 WA -
testcase_09 AC 143 ms
53,896 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 173 ms
54,344 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 780 ms
63,988 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 760 ms
64,164 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 784 ms
63,460 KB
testcase_24 AC 780 ms
63,720 KB
testcase_25 AC 744 ms
64,300 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 791 ms
63,628 KB
testcase_29 AC 711 ms
67,508 KB
testcase_30 AC 130 ms
54,044 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();
        }
        int count = 0;
        for (int i = 1; i <= n; i++) {
            if (i != arr[i]) {
                int x = arr[i];
                arr[i] = arr[x];
                arr[x] = x;
                count++;
            }
        }
        if (k % 2 == count % 2) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0