結果

問題 No.482 あなたの名は
ユーザー shinwisteriashinwisteria
提出日時 2017-03-20 17:37:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 3,337 ms
コンパイル使用メモリ 75,432 KB
実行使用メモリ 81,100 KB
最終ジャッジ日時 2024-07-05 03:23:56
合計ジャッジ時間 10,619 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
46,732 KB
testcase_01 AC 127 ms
41,644 KB
testcase_02 AC 127 ms
41,316 KB
testcase_03 AC 128 ms
41,240 KB
testcase_04 AC 127 ms
41,380 KB
testcase_05 AC 126 ms
41,084 KB
testcase_06 AC 125 ms
41,496 KB
testcase_07 AC 200 ms
42,496 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 182 ms
41,888 KB
testcase_11 AC 190 ms
42,312 KB
testcase_12 AC 194 ms
42,808 KB
testcase_13 AC 182 ms
42,284 KB
testcase_14 AC 162 ms
42,232 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
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();
		ArrayList<Integer> list = new ArrayList<>();
		for(int i = 0;i<N;i++){
			list.add(s.nextInt());
		}
		s.close();
		for(int i = 1;i <= N;i++){
			if(i != list.get(i-1)){
				int t = list.indexOf(i);
				list.set(t, list.get(i-1));
				list.set(i-1, i);
				K--;
			}
		}
		if(K%2 == 0){
			K = 0;
		}
		if(K == 0)
			System.out.println("YES");
		else
			System.out.println("NO");
	}

}
0