結果

問題 No.482 あなたの名は
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-02-10 23:27:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 79,288 KB
実行使用メモリ 65,736 KB
最終ジャッジ日時 2024-06-09 04:42:47
合計ジャッジ時間 14,995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,920 KB
testcase_01 AC 111 ms
54,128 KB
testcase_02 AC 111 ms
53,816 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 101 ms
53,088 KB
testcase_06 WA -
testcase_07 AC 155 ms
54,416 KB
testcase_08 WA -
testcase_09 AC 122 ms
54,300 KB
testcase_10 AC 155 ms
54,220 KB
testcase_11 AC 154 ms
54,228 KB
testcase_12 AC 156 ms
54,420 KB
testcase_13 AC 155 ms
54,448 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 575 ms
63,280 KB
testcase_18 AC 649 ms
63,916 KB
testcase_19 WA -
testcase_20 AC 685 ms
63,808 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 629 ms
63,516 KB
testcase_25 AC 645 ms
64,256 KB
testcase_26 AC 668 ms
63,548 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 587 ms
65,280 KB
testcase_30 AC 100 ms
52,980 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||K-c==1)b = false;
        if(b){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0