結果

問題 No.100 直列あみだくじ
ユーザー warashi
提出日時 2015-02-10 19:29:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-23 18:19:53
合計ジャッジ時間 2,808 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import functools
import operator

N = int(input())
a = [0] + list(map(int, input().split()))
rest = list(range(len(a)))
loop = []
while True:
    if len(rest) == 0:
        break
    now = rest[0]
    count = 0
    while True:
        rest.remove(now)
        now = a[now]
        if now not in rest:
            loop.append(count)
            break
        count += 1
if len(list(filter(lambda x: x % 2 != 0, loop))) == 0:
    print("Yes")
else:
    print("No")
0