結果

問題 No.2089 置換の符号
ユーザー titan23titan23
提出日時 2022-09-30 21:40:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-12-22 22:47:52
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,168 KB
testcase_01 AC 50 ms
55,424 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 51 ms
55,808 KB
testcase_09 AC 49 ms
55,808 KB
testcase_10 AC 49 ms
55,808 KB
testcase_11 AC 48 ms
55,424 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 49 ms
55,680 KB
testcase_17 AC 50 ms
55,680 KB
testcase_18 AC 48 ms
55,552 KB
testcase_19 AC 49 ms
55,424 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 49 ms
55,680 KB
testcase_23 WA -
testcase_24 AC 48 ms
56,320 KB
testcase_25 WA -
testcase_26 AC 49 ms
56,576 KB
testcase_27 WA -
testcase_28 AC 94 ms
65,920 KB
testcase_29 AC 116 ms
66,304 KB
testcase_30 AC 117 ms
66,560 KB
testcase_31 AC 117 ms
66,432 KB
testcase_32 AC 115 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''input

'''
import sys
import math
from bisect import bisect_right, bisect_left
from itertools import *
from collections import *
from heapq import heapify, heappush, heappop
import random
inf = float('inf')
# mod = 1000000007
# mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
def error(*args, sep=' ', end='\n'):
  print(*args, sep=sep, end=end, file=sys.stderr)
# sys.setrecursionlimit(10**6)

#  -----------------------  #

n = int(input())
S = list(map(int, input().split()))
for i in range(n):
  S[i] -= 1
seen = [False] * n
cnt = 0
for i in range(n):
  if seen[i]:
    continue
  seen[i] = True
  f = i
  while True:
    i = S.index(i)
    seen[i] = True
    if i == f:
      break
  cnt += 1

sgn = 1 if cnt % 2 == 0 else -1
print(sgn)

0