結果

問題 No.100 直列あみだくじ
ユーザー 37zigen37zigen
提出日時 2016-11-25 15:25:56
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 80,388 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-11-27 11:13:39
合計ジャッジ時間 10,896 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,220 KB
testcase_01 AC 130 ms
41,168 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 126 ms
41,000 KB
testcase_06 AC 127 ms
41,176 KB
testcase_07 AC 126 ms
41,632 KB
testcase_08 AC 120 ms
40,652 KB
testcase_09 AC 125 ms
41,264 KB
testcase_10 WA -
testcase_11 AC 128 ms
41,028 KB
testcase_12 AC 117 ms
39,896 KB
testcase_13 AC 128 ms
40,944 KB
testcase_14 WA -
testcase_15 AC 124 ms
41,220 KB
testcase_16 AC 127 ms
41,328 KB
testcase_17 AC 126 ms
41,164 KB
testcase_18 AC 129 ms
41,072 KB
testcase_19 AC 127 ms
41,244 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 115 ms
40,240 KB
testcase_23 AC 126 ms
41,184 KB
testcase_24 AC 128 ms
41,396 KB
testcase_25 AC 115 ms
41,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 127 ms
41,252 KB
testcase_29 AC 128 ms
41,076 KB
testcase_30 AC 122 ms
41,148 KB
testcase_31 WA -
testcase_32 AC 120 ms
40,320 KB
testcase_33 WA -
testcase_34 AC 113 ms
40,140 KB
testcase_35 AC 133 ms
41,352 KB
testcase_36 WA -
testcase_37 AC 133 ms
41,504 KB
testcase_38 WA -
testcase_39 AC 135 ms
41,432 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 120 ms
41,092 KB
testcase_43 AC 134 ms
41,072 KB
testcase_44 WA -
testcase_45 AC 133 ms
41,292 KB
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
		}

		int[] count = new int[N];
		boolean[] vis = new boolean[N];
		int[] loop_size = new int[N + 1];
		for (int i = 0; i < N; ++i) {
			vis[i] = true;
			count[a[i]] = count[i] + 1;
			if (vis[a[i]]) {
				++loop_size[count[a[i]]];
			}
		}

		int even = 0;
		for (int i = 0; i <= N; ++i) {
			if (i % 2 == 0 && loop_size[i] > 0)
				++even;
		}
		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