結果

問題 No.100 直列あみだくじ
ユーザー ぴろずぴろず
提出日時 2014-12-11 23:38:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 764 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 74,208 KB
実行使用メモリ 56,036 KB
最終ジャッジ日時 2024-05-03 04:30:24
合計ジャッジ時間 10,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,100 KB
testcase_01 AC 141 ms
54,044 KB
testcase_02 AC 145 ms
54,096 KB
testcase_03 AC 146 ms
53,968 KB
testcase_04 AC 139 ms
53,988 KB
testcase_05 AC 136 ms
54,160 KB
testcase_06 AC 134 ms
54,392 KB
testcase_07 AC 134 ms
53,948 KB
testcase_08 AC 134 ms
53,848 KB
testcase_09 AC 136 ms
54,044 KB
testcase_10 AC 134 ms
54,044 KB
testcase_11 AC 134 ms
54,176 KB
testcase_12 AC 135 ms
53,932 KB
testcase_13 AC 135 ms
54,212 KB
testcase_14 AC 138 ms
53,900 KB
testcase_15 AC 135 ms
54,216 KB
testcase_16 AC 137 ms
53,948 KB
testcase_17 AC 133 ms
53,956 KB
testcase_18 AC 132 ms
54,164 KB
testcase_19 AC 139 ms
54,048 KB
testcase_20 AC 134 ms
54,068 KB
testcase_21 AC 133 ms
53,828 KB
testcase_22 AC 133 ms
53,988 KB
testcase_23 AC 135 ms
53,852 KB
testcase_24 AC 135 ms
54,112 KB
testcase_25 AC 139 ms
54,048 KB
testcase_26 AC 137 ms
54,140 KB
testcase_27 AC 140 ms
54,044 KB
testcase_28 AC 139 ms
54,336 KB
testcase_29 AC 133 ms
54,092 KB
testcase_30 AC 140 ms
54,044 KB
testcase_31 AC 137 ms
54,248 KB
testcase_32 AC 130 ms
52,800 KB
testcase_33 AC 133 ms
53,960 KB
testcase_34 AC 136 ms
54,444 KB
testcase_35 AC 141 ms
54,056 KB
testcase_36 AC 148 ms
54,056 KB
testcase_37 AC 140 ms
54,052 KB
testcase_38 AC 139 ms
54,152 KB
testcase_39 AC 138 ms
54,152 KB
testcase_40 AC 138 ms
53,928 KB
testcase_41 AC 139 ms
54,168 KB
testcase_42 AC 140 ms
54,052 KB
testcase_43 AC 141 ms
54,200 KB
testcase_44 AC 142 ms
53,896 KB
testcase_45 AC 141 ms
54,216 KB
testcase_46 AC 141 ms
53,964 KB
testcase_47 AC 142 ms
56,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no100;

import java.util.Scanner;

public class Main {

	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();
		}
		boolean[] used = new boolean[n];
		int[] count = new int[51];
		for(int i=0;i<n;i++) {
			if (used[i]) {
				continue;
			}
			int length = 0;
			int now = i;
			while(true) {
				if (used[now]) {
					break;
				}
				used[now] = true;
				length++;
				now = a[now] - 1;
			}
			count[length]++;
		}
		for(int i=2;i<=50;i++) {
			if (i % 2 == 0) {
				if (count[i] % 2 == 1) {
					System.out.println("No");
					return;
				}
			}
		}
		System.out.println("Yes");
	}

}
0