結果

問題 No.2089 置換の符号
ユーザー Akijin_007Akijin_007
提出日時 2022-09-30 22:05:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 63,208 KB
最終ジャッジ日時 2024-06-02 05:43:53
合計ジャッジ時間 2,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,348 KB
testcase_01 AC 32 ms
53,132 KB
testcase_02 AC 32 ms
52,400 KB
testcase_03 AC 31 ms
52,768 KB
testcase_04 AC 32 ms
52,016 KB
testcase_05 AC 32 ms
53,212 KB
testcase_06 AC 32 ms
52,364 KB
testcase_07 AC 33 ms
52,200 KB
testcase_08 AC 33 ms
52,248 KB
testcase_09 AC 33 ms
53,580 KB
testcase_10 AC 33 ms
52,728 KB
testcase_11 AC 34 ms
53,480 KB
testcase_12 AC 33 ms
52,204 KB
testcase_13 AC 33 ms
52,824 KB
testcase_14 AC 34 ms
51,828 KB
testcase_15 AC 32 ms
52,720 KB
testcase_16 AC 33 ms
52,392 KB
testcase_17 AC 32 ms
53,960 KB
testcase_18 AC 32 ms
53,232 KB
testcase_19 AC 33 ms
52,336 KB
testcase_20 AC 31 ms
53,012 KB
testcase_21 AC 33 ms
52,192 KB
testcase_22 AC 33 ms
52,592 KB
testcase_23 AC 33 ms
53,184 KB
testcase_24 AC 33 ms
52,072 KB
testcase_25 AC 35 ms
53,380 KB
testcase_26 AC 33 ms
53,820 KB
testcase_27 AC 39 ms
61,120 KB
testcase_28 AC 39 ms
62,448 KB
testcase_29 AC 42 ms
63,208 KB
testcase_30 AC 41 ms
62,836 KB
testcase_31 AC 41 ms
61,996 KB
testcase_32 AC 41 ms
62,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))


N = int(input())
S = list(map(int, input().split()))

p = [0] * N
for i in range(N):
    p[S[i]-1] = i

t = 0
for i in range(N):
    if p[i] != i:
        t += 1
        q = p[i]
        u = S[i]
        S[i], S[q] = S[q], S[i]
        p[i] = i
        p[u-1] = q

# print(S)

print(-(t % 2) * 2 + 1)

0