結果

問題 No.2382 Amidakuji M
ユーザー sharusharu
提出日時 2023-07-14 22:50:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,692 KB
最終ジャッジ日時 2024-09-16 07:55:50
合計ジャッジ時間 2,588 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 45 ms
13,312 KB
testcase_06 WA -
testcase_07 AC 65 ms
16,584 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 105 ms
23,764 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 WA -
testcase_15 AC 30 ms
10,880 KB
testcase_16 WA -
testcase_17 AC 30 ms
10,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 149 ms
29,560 KB
testcase_21 AC 151 ms
29,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

n, m = map(int, input().split())
p = list(map(int, input().split()))
c = 0
for i in range(n):
    if p[i] - 1 != i:
        c += 1
c = max(0, c - 1)
if gcd(2, m) != 1:
    print(-1)
else:
    n = (-c * pow(2, -1, m)) % m
    print((c + 2 * n))
0