結果

問題 No.482 あなたの名は
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-09 18:22:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 860 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 64,956 KB
最終ジャッジ日時 2024-10-07 04:44:42
合計ジャッジ時間 17,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,136 KB
testcase_01 AC 133 ms
53,956 KB
testcase_02 AC 130 ms
54,004 KB
testcase_03 AC 133 ms
54,184 KB
testcase_04 AC 132 ms
54,000 KB
testcase_05 AC 133 ms
54,132 KB
testcase_06 AC 133 ms
53,828 KB
testcase_07 AC 183 ms
54,168 KB
testcase_08 AC 180 ms
53,980 KB
testcase_09 AC 149 ms
54,316 KB
testcase_10 AC 168 ms
54,484 KB
testcase_11 AC 186 ms
54,780 KB
testcase_12 AC 185 ms
54,348 KB
testcase_13 AC 181 ms
54,396 KB
testcase_14 AC 179 ms
54,360 KB
testcase_15 AC 769 ms
63,560 KB
testcase_16 AC 795 ms
64,256 KB
testcase_17 AC 809 ms
63,816 KB
testcase_18 AC 818 ms
63,552 KB
testcase_19 AC 807 ms
63,612 KB
testcase_20 AC 860 ms
63,612 KB
testcase_21 AC 784 ms
63,776 KB
testcase_22 AC 744 ms
64,484 KB
testcase_23 AC 806 ms
63,516 KB
testcase_24 AC 797 ms
64,376 KB
testcase_25 AC 770 ms
64,284 KB
testcase_26 AC 768 ms
63,648 KB
testcase_27 AC 776 ms
64,184 KB
testcase_28 AC 819 ms
63,720 KB
testcase_29 AC 739 ms
64,956 KB
testcase_30 AC 134 ms
54,240 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 + 1; i++) {
      d[i] = sc.nextInt();
    }
    long num = 0;
    for(int i = 1; i < N + 1; i++) {
      while(d[i] != i) {
        int temp = d[i];
        d[i] = d[d[i]];
        d[temp] = temp;
        num++;
      }
    }
    String ans = "NO";
    if(num <= K && (K - num) % 2 == 0) ans = "YES";
    System.out.println(ans);
  }
}
0