結果

問題 No.2089 置換の符号
ユーザー titan23titan23
提出日時 2022-09-30 21:43:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 67,016 KB
最終ジャッジ日時 2024-06-02 05:19:06
合計ジャッジ時間 2,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,000 KB
testcase_01 AC 41 ms
55,936 KB
testcase_02 AC 42 ms
56,688 KB
testcase_03 AC 44 ms
56,988 KB
testcase_04 AC 43 ms
56,480 KB
testcase_05 AC 42 ms
56,916 KB
testcase_06 AC 41 ms
56,596 KB
testcase_07 AC 42 ms
56,792 KB
testcase_08 AC 41 ms
55,768 KB
testcase_09 AC 41 ms
56,788 KB
testcase_10 AC 40 ms
56,228 KB
testcase_11 AC 42 ms
56,208 KB
testcase_12 AC 41 ms
56,236 KB
testcase_13 AC 42 ms
56,136 KB
testcase_14 AC 41 ms
56,480 KB
testcase_15 AC 41 ms
55,528 KB
testcase_16 AC 42 ms
55,792 KB
testcase_17 AC 40 ms
56,432 KB
testcase_18 AC 41 ms
56,420 KB
testcase_19 AC 40 ms
56,264 KB
testcase_20 AC 39 ms
55,780 KB
testcase_21 AC 39 ms
56,684 KB
testcase_22 AC 39 ms
56,384 KB
testcase_23 AC 41 ms
56,180 KB
testcase_24 AC 43 ms
57,008 KB
testcase_25 AC 44 ms
57,128 KB
testcase_26 AC 44 ms
57,140 KB
testcase_27 AC 53 ms
65,660 KB
testcase_28 AC 83 ms
66,012 KB
testcase_29 AC 100 ms
66,656 KB
testcase_30 AC 104 ms
67,016 KB
testcase_31 AC 102 ms
66,920 KB
testcase_32 AC 103 ms
66,808 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
  tmp = 0
  while True:
    i = S.index(i)
    seen[i] = True
    tmp += 1
    if i == f:
      break
  cnt += tmp-1

sgn = (-1) ** cnt
print(sgn)
0