結果

問題 No.482 あなたの名は
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 18:12:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 3,938 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 67,512 KB
最終ジャッジ日時 2024-07-07 03:03:54
合計ジャッジ時間 15,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,840 KB
testcase_01 AC 94 ms
52,720 KB
testcase_02 AC 105 ms
53,764 KB
testcase_03 AC 104 ms
54,288 KB
testcase_04 AC 105 ms
53,720 KB
testcase_05 AC 106 ms
54,092 KB
testcase_06 AC 107 ms
53,888 KB
testcase_07 AC 155 ms
54,204 KB
testcase_08 WA -
testcase_09 AC 119 ms
54,028 KB
testcase_10 AC 146 ms
53,948 KB
testcase_11 AC 138 ms
54,120 KB
testcase_12 AC 157 ms
54,292 KB
testcase_13 AC 137 ms
54,232 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 643 ms
63,304 KB
testcase_18 AC 595 ms
63,800 KB
testcase_19 AC 645 ms
63,472 KB
testcase_20 WA -
testcase_21 AC 641 ms
63,472 KB
testcase_22 WA -
testcase_23 AC 632 ms
63,820 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 558 ms
63,528 KB
testcase_27 AC 647 ms
63,576 KB
testcase_28 AC 618 ms
63,612 KB
testcase_29 AC 600 ms
67,512 KB
testcase_30 AC 116 ms
54,132 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();
		int rest = N;
		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;
				rest--;
			}
		}
		s.close();
		for(int i = 0;i < rest;i++){
			if(D[i] != 0){
				while(D[i] != i+1){
					//System.out.println("D[" + i + "] = " + D[i]);
					int k = D[D[i]-1];
					D[D[i]-1] = 0;
					rest--;
					D[i] = k;
					K--;
				}
				if(K < 0){
					break;
				}
			}
		}
		if(K % 2 == 0){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}

}
0