結果

問題 No.482 あなたの名は
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-02-10 23:18:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 3,253 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 65,128 KB
最終ジャッジ日時 2024-06-09 04:30:22
合計ジャッジ時間 15,762 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,096 KB
testcase_01 AC 117 ms
54,164 KB
testcase_02 AC 116 ms
54,140 KB
testcase_03 AC 102 ms
53,080 KB
testcase_04 AC 100 ms
52,480 KB
testcase_05 AC 117 ms
54,148 KB
testcase_06 AC 122 ms
54,040 KB
testcase_07 AC 161 ms
54,296 KB
testcase_08 WA -
testcase_09 AC 125 ms
54,128 KB
testcase_10 AC 150 ms
54,252 KB
testcase_11 AC 154 ms
54,512 KB
testcase_12 WA -
testcase_13 AC 153 ms
54,416 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 693 ms
64,216 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 665 ms
63,824 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 670 ms
63,492 KB
testcase_24 AC 673 ms
63,856 KB
testcase_25 AC 663 ms
63,872 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 630 ms
63,376 KB
testcase_29 AC 649 ms
65,128 KB
testcase_30 AC 119 ms
54,296 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 [] D = new int [N+1];
        for(int i=1; i<=N; i++){
            D[i] = sc.nextInt();
        }
        int c=0;
        for(int i=1; i<=N; i++){
            if(i!=D[i]){
                int tmp = D[i];
                D[i] = D[tmp];
                D[tmp] = tmp;
                c++;
            }
        }
        boolean b = true;
        if(c>K)b = false;
        if((K-c)%2==1)b=false;
        if(b){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0