結果

問題 No.100 直列あみだくじ
ユーザー 37zigen37zigen
提出日時 2016-11-25 15:36:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 913 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 80,764 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-05-05 13:27:53
合計ジャッジ時間 9,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,272 KB
testcase_01 AC 107 ms
41,636 KB
testcase_02 AC 103 ms
39,944 KB
testcase_03 AC 114 ms
41,468 KB
testcase_04 WA -
testcase_05 AC 100 ms
41,320 KB
testcase_06 AC 102 ms
41,348 KB
testcase_07 AC 103 ms
40,936 KB
testcase_08 AC 105 ms
40,148 KB
testcase_09 AC 106 ms
41,516 KB
testcase_10 AC 112 ms
41,204 KB
testcase_11 AC 105 ms
40,368 KB
testcase_12 AC 113 ms
41,604 KB
testcase_13 AC 102 ms
40,400 KB
testcase_14 AC 105 ms
41,320 KB
testcase_15 AC 106 ms
40,144 KB
testcase_16 AC 113 ms
41,152 KB
testcase_17 AC 103 ms
41,592 KB
testcase_18 AC 107 ms
40,272 KB
testcase_19 AC 104 ms
41,688 KB
testcase_20 AC 115 ms
41,380 KB
testcase_21 AC 112 ms
41,184 KB
testcase_22 WA -
testcase_23 AC 103 ms
41,576 KB
testcase_24 AC 103 ms
41,144 KB
testcase_25 AC 103 ms
39,944 KB
testcase_26 AC 114 ms
41,216 KB
testcase_27 AC 108 ms
40,680 KB
testcase_28 AC 104 ms
40,060 KB
testcase_29 AC 108 ms
40,960 KB
testcase_30 AC 108 ms
40,480 KB
testcase_31 AC 114 ms
41,344 KB
testcase_32 WA -
testcase_33 AC 102 ms
40,216 KB
testcase_34 AC 110 ms
40,832 KB
testcase_35 AC 121 ms
41,860 KB
testcase_36 AC 104 ms
40,448 KB
testcase_37 AC 114 ms
41,568 KB
testcase_38 AC 106 ms
40,496 KB
testcase_39 AC 116 ms
41,220 KB
testcase_40 AC 117 ms
41,112 KB
testcase_41 AC 109 ms
40,392 KB
testcase_42 AC 114 ms
40,936 KB
testcase_43 AC 118 ms
41,196 KB
testcase_44 WA -
testcase_45 AC 109 ms
41,604 KB
testcase_46 AC 107 ms
41,604 KB
testcase_47 AC 118 ms
41,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

import javax.swing.plaf.synth.SynthScrollBarUI;

public class Q100 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] a = new int[N];
		for (int i = 0; i < N; ++i) {
			a[i] = sc.nextInt() - 1;
		}
		boolean[] vis = new boolean[N];
		int[] loopSize = new int[N + 1];

		for (int i = 0; i < N; ++i) {
			if (!vis[i]) {
				int count = 1;
				int cur = i;
				vis[cur] = true;
				while (!vis[a[cur]]) {
					cur = a[cur];
					vis[cur] = true;
					++count;
				}
				++loopSize[count];
			}
		}
		int even = 0;
		for (int i = 1; i <= N; ++i) {
			if (i % 2 == 0 && loopSize[i] > 0)
				even += loopSize[i];
		}
		if (even % 2 == 0) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}

	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0