結果

問題 No.482 あなたの名は
ユーザー shinwisteriashinwisteria
提出日時 2017-03-23 18:20:06
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 639 bytes
コンパイル時間 3,286 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 70,044 KB
最終ジャッジ日時 2024-07-05 18:52:59
合計ジャッジ時間 9,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
46,440 KB
testcase_01 AC 113 ms
41,648 KB
testcase_02 AC 120 ms
41,284 KB
testcase_03 AC 113 ms
39,996 KB
testcase_04 AC 110 ms
39,864 KB
testcase_05 AC 103 ms
39,980 KB
testcase_06 AC 116 ms
41,052 KB
testcase_07 AC 181 ms
42,248 KB
testcase_08 AC 161 ms
41,596 KB
testcase_09 AC 130 ms
41,336 KB
testcase_10 AC 161 ms
41,788 KB
testcase_11 AC 167 ms
42,324 KB
testcase_12 AC 173 ms
42,336 KB
testcase_13 AC 169 ms
41,932 KB
testcase_14 AC 152 ms
41,596 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> D = new ArrayList<>();
		
		for(int i = 0;i<N;i++){
			D.add(s.nextInt());
		}
		s.close();
		for(int i : D){
			if(i > 0 && i != D.get(i-1)){
				while(true){
					int t = D.get(i-1);
					D.set(D.indexOf(i), 0);
					if(t == 0){
						break;
					}
					i = t;
					K--;
				}
			}
		}
		if(K > 0&&K%2 == 0){
			K = 0;
		}
		if(K == 0)
			System.out.println("YES");
		else
			System.out.println("NO");
	}
	
}
0