結果

問題 No.482 あなたの名は
ユーザー shinwisteriashinwisteria
提出日時 2017-03-21 10:56:10
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 918 bytes
コンパイル時間 3,657 ms
コンパイル使用メモリ 78,744 KB
実行使用メモリ 71,844 KB
最終ジャッジ日時 2024-07-05 05:28:29
合計ジャッジ時間 10,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
46,876 KB
testcase_01 AC 117 ms
40,184 KB
testcase_02 AC 129 ms
41,368 KB
testcase_03 AC 128 ms
41,116 KB
testcase_04 AC 128 ms
41,092 KB
testcase_05 AC 127 ms
41,468 KB
testcase_06 AC 128 ms
41,228 KB
testcase_07 AC 213 ms
42,648 KB
testcase_08 AC 187 ms
42,532 KB
testcase_09 AC 141 ms
41,488 KB
testcase_10 AC 193 ms
42,064 KB
testcase_11 AC 205 ms
42,276 KB
testcase_12 AC 202 ms
42,948 KB
testcase_13 AC 187 ms
42,212 KB
testcase_14 AC 163 ms
41,932 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 {
	static ArrayList<Integer> list = new ArrayList<>();
	static StringBuilder cut = new StringBuilder();
	static long K;
	static int N;

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		N = s.nextInt();
		K = s.nextLong();
		list.add(0);
		cut.append('0');
		for(int i = 1;i<=N;i++){
			list.add(s.nextInt());
			cut.append('1');
		}
		s.close();
		for(int i = 1;i<=N;){
			swtch(i);
			if(cut.indexOf("1") == -1){
				break;
			}else{
				i = cut.indexOf("1");
			}
		}
		if(K > 0&&K%2 == 0){
			K = 0;
		}
		if(K == 0)
			System.out.println("YES");
		else
			System.out.println("NO");
	}
	
	static void swtch(int i){
		if(i != list.get(i)){
			int t = list.indexOf(i);
			list.set(t, list.get(i));
			list.set(i, i);
			cut.setCharAt(i, '0');
			swtch(t);
			K--;
		}else{
			cut.setCharAt(i, '0');
		}
	}
}
0