結果

問題 No.482 あなたの名は
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 18:23:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 716 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 2,850 ms
コンパイル使用メモリ 75,108 KB
実行使用メモリ 66,436 KB
最終ジャッジ日時 2024-07-07 03:04:49
合計ジャッジ時間 16,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,068 KB
testcase_01 AC 104 ms
53,036 KB
testcase_02 AC 111 ms
54,004 KB
testcase_03 AC 107 ms
54,124 KB
testcase_04 AC 101 ms
53,008 KB
testcase_05 AC 101 ms
52,896 KB
testcase_06 AC 98 ms
52,452 KB
testcase_07 AC 159 ms
54,500 KB
testcase_08 AC 155 ms
54,280 KB
testcase_09 AC 122 ms
54,164 KB
testcase_10 AC 156 ms
54,400 KB
testcase_11 AC 162 ms
54,092 KB
testcase_12 AC 163 ms
54,652 KB
testcase_13 AC 156 ms
54,336 KB
testcase_14 AC 159 ms
54,388 KB
testcase_15 AC 671 ms
64,128 KB
testcase_16 AC 625 ms
64,392 KB
testcase_17 AC 639 ms
64,172 KB
testcase_18 AC 669 ms
64,472 KB
testcase_19 AC 688 ms
63,476 KB
testcase_20 AC 716 ms
63,644 KB
testcase_21 AC 631 ms
64,284 KB
testcase_22 AC 646 ms
64,252 KB
testcase_23 AC 696 ms
63,828 KB
testcase_24 AC 697 ms
63,580 KB
testcase_25 AC 713 ms
64,296 KB
testcase_26 AC 638 ms
64,148 KB
testcase_27 AC 630 ms
64,196 KB
testcase_28 AC 636 ms
64,420 KB
testcase_29 AC 643 ms
66,436 KB
testcase_30 AC 100 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class YourName {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		long K = s.nextLong();
		int[] D = new int[N];
		for(int i = 0;i < N;i++){
			D[i] = s.nextInt();
			if(i+1 == D[i]){
				D[i] = 0;
			}
		}
		s.close();
		for(int i = 0;i < N;i++){
			if(D[i] != 0){
				while(D[i] != i+1){
					//System.out.println("D[" + i + "] = " + D[i] + "  " + K);
					int k = D[D[i]-1];
					D[D[i]-1] = 0;
					D[i] = k;
					K--;
				}
				if(K < 0){
					break;
				}
			}
		}
		if(K >= 0 &&K % 2 == 0){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}

}
0