結果

問題 No.100 直列あみだくじ
ユーザー convexineqconvexineq
提出日時 2020-12-06 22:40:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 55,928 KB
最終ジャッジ日時 2024-09-17 13:20:58
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,884 KB
testcase_01 AC 39 ms
53,488 KB
testcase_02 AC 36 ms
55,072 KB
testcase_03 AC 36 ms
54,476 KB
testcase_04 AC 42 ms
54,256 KB
testcase_05 AC 40 ms
54,132 KB
testcase_06 AC 40 ms
53,872 KB
testcase_07 AC 36 ms
54,096 KB
testcase_08 AC 38 ms
54,172 KB
testcase_09 AC 37 ms
54,080 KB
testcase_10 AC 37 ms
53,360 KB
testcase_11 AC 37 ms
53,688 KB
testcase_12 AC 37 ms
54,300 KB
testcase_13 AC 36 ms
53,888 KB
testcase_14 AC 37 ms
55,928 KB
testcase_15 AC 38 ms
54,660 KB
testcase_16 AC 37 ms
54,072 KB
testcase_17 AC 36 ms
53,876 KB
testcase_18 AC 37 ms
53,768 KB
testcase_19 AC 36 ms
53,720 KB
testcase_20 AC 37 ms
54,164 KB
testcase_21 AC 36 ms
54,608 KB
testcase_22 AC 37 ms
54,188 KB
testcase_23 AC 37 ms
54,024 KB
testcase_24 AC 37 ms
54,476 KB
testcase_25 AC 36 ms
54,680 KB
testcase_26 AC 37 ms
53,748 KB
testcase_27 AC 36 ms
54,220 KB
testcase_28 AC 36 ms
54,284 KB
testcase_29 AC 36 ms
54,140 KB
testcase_30 AC 36 ms
54,068 KB
testcase_31 AC 37 ms
54,164 KB
testcase_32 AC 37 ms
54,024 KB
testcase_33 AC 36 ms
54,920 KB
testcase_34 AC 37 ms
54,084 KB
testcase_35 AC 35 ms
55,036 KB
testcase_36 AC 36 ms
53,840 KB
testcase_37 AC 36 ms
54,216 KB
testcase_38 AC 36 ms
53,868 KB
testcase_39 AC 36 ms
53,844 KB
testcase_40 AC 37 ms
54,084 KB
testcase_41 AC 36 ms
53,824 KB
testcase_42 AC 38 ms
54,408 KB
testcase_43 AC 37 ms
55,084 KB
testcase_44 AC 36 ms
54,288 KB
testcase_45 AC 38 ms
54,384 KB
testcase_46 AC 36 ms
54,992 KB
testcase_47 AC 38 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*r, = map(int,input().split())
for i in range(n): r[i] -= 1

from collections import Counter
d = Counter()
used = [0]*n
for i in range(n):
    if used[i]: continue
    cnt = 0
    while used[i]==0:
        used[i] = 1
        i = r[i]
        cnt += 1
    d[cnt] += 1

print("No" if any(k%2==0 and v%2==1 for k,v in d.items()) else "Yes")
0