結果

問題 No.2382 Amidakuji M
ユーザー かつっぱ競プロかつっぱ競プロ
提出日時 2023-07-14 21:44:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,292 KB
最終ジャッジ日時 2024-09-16 06:38:59
合計ジャッジ時間 8,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
12,416 KB
testcase_01 AC 32 ms
12,288 KB
testcase_02 AC 33 ms
12,288 KB
testcase_03 AC 406 ms
20,540 KB
testcase_04 AC 691 ms
27,272 KB
testcase_05 AC 132 ms
14,848 KB
testcase_06 AC 435 ms
21,584 KB
testcase_07 AC 282 ms
18,076 KB
testcase_08 AC 54 ms
12,800 KB
testcase_09 AC 612 ms
25,352 KB
testcase_10 AC 837 ms
30,628 KB
testcase_11 AC 324 ms
18,912 KB
testcase_12 AC 616 ms
25,448 KB
testcase_13 AC 32 ms
12,416 KB
testcase_14 AC 33 ms
12,416 KB
testcase_15 AC 33 ms
12,288 KB
testcase_16 AC 33 ms
12,288 KB
testcase_17 AC 33 ms
12,288 KB
testcase_18 AC 35 ms
12,416 KB
testcase_19 AC 906 ms
31,168 KB
testcase_20 AC 906 ms
31,280 KB
testcase_21 AC 911 ms
31,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

bit = [0] * 220000


def add(x):
    x += 1
    while x < len(bit):
        bit[x] += 1
        x += x & -x


def getSum(x):
    x += 1
    ans = 0
    while x > 0:
        ans += bit[x]
        x -= x & -x

    return ans


N, M = map(int, input().split())
P = list(map(int, input().split()))

r = 0

for p in P[::-1]:
    r += getSum(p)
    add(p)


ans = r // M * M

for _ in range(6):
    if ans >= r and ans % 2 == r % 2:
        print(ans)
        exit()
    ans += M

print(-1)
0