結果

問題 No.482 あなたの名は
ユーザー uafr_csuafr_cs
提出日時 2017-02-10 22:34:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 850 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 75,912 KB
実行使用メモリ 65,748 KB
最終ジャッジ日時 2024-06-08 18:02:38
合計ジャッジ時間 16,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,952 KB
testcase_01 AC 102 ms
40,808 KB
testcase_02 AC 105 ms
41,160 KB
testcase_03 AC 96 ms
40,168 KB
testcase_04 AC 106 ms
41,068 KB
testcase_05 AC 105 ms
41,052 KB
testcase_06 AC 119 ms
41,004 KB
testcase_07 AC 155 ms
42,164 KB
testcase_08 WA -
testcase_09 AC 125 ms
40,784 KB
testcase_10 AC 144 ms
41,616 KB
testcase_11 AC 147 ms
41,664 KB
testcase_12 WA -
testcase_13 AC 150 ms
41,768 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 644 ms
52,880 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 655 ms
53,296 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 655 ms
52,900 KB
testcase_24 AC 653 ms
52,728 KB
testcase_25 AC 634 ms
52,704 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 757 ms
52,924 KB
testcase_29 AC 711 ms
56,892 KB
testcase_30 AC 117 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final long K = sc.nextLong();
		
		int[] swap = new int[N];
		for(int i = 0; i < N; i++){
			swap[i] = sc.nextInt() - 1;
		}
		
		long min_times = 0;
		for(int i = 0; i < N; i++){
			if(swap[i] != i){
				final int tmp = swap[swap[i]];
				swap[swap[i]] = swap[i];
				swap[i] = tmp;
				
				min_times++;
			}
			
			//System.out.println(Arrays.toString(swap));
		}
		
		if(min_times > K || (K - min_times) % 2 != 0){
			System.out.println("NO");
		}else{
			System.out.println("YES");
		}
	}
}
0