結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,680 KB
testcase_01 AC 44 ms
55,808 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
55,808 KB
testcase_09 AC 44 ms
55,936 KB
testcase_10 AC 45 ms
55,552 KB
testcase_11 AC 44 ms
55,552 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 43 ms
55,552 KB
testcase_17 AC 44 ms
55,552 KB
testcase_18 AC 47 ms
55,424 KB
testcase_19 AC 46 ms
55,552 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 45 ms
55,808 KB
testcase_23 WA -
testcase_24 AC 45 ms
56,320 KB
testcase_25 WA -
testcase_26 AC 45 ms
56,320 KB
testcase_27 WA -
testcase_28 AC 89 ms
66,048 KB
testcase_29 AC 107 ms
66,176 KB
testcase_30 AC 110 ms
66,176 KB
testcase_31 AC 109 ms
66,304 KB
testcase_32 AC 111 ms
65,664 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