結果

問題 No.2382 Amidakuji M
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-14 13:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-09-14 13:18:22
合計ジャッジ時間 6,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,120 KB
testcase_01 AC 40 ms
53,248 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 266 ms
89,088 KB
testcase_04 AC 439 ms
100,992 KB
testcase_05 AC 119 ms
79,440 KB
testcase_06 AC 302 ms
91,392 KB
testcase_07 AC 200 ms
85,376 KB
testcase_08 AC 80 ms
77,696 KB
testcase_09 AC 383 ms
96,300 KB
testcase_10 AC 571 ms
105,552 KB
testcase_11 AC 225 ms
86,076 KB
testcase_12 AC 402 ms
98,424 KB
testcase_13 AC 39 ms
53,120 KB
testcase_14 AC 39 ms
53,504 KB
testcase_15 AC 39 ms
53,376 KB
testcase_16 AC 40 ms
53,248 KB
testcase_17 AC 39 ms
54,016 KB
testcase_18 AC 39 ms
53,120 KB
testcase_19 AC 617 ms
108,416 KB
testcase_20 AC 598 ms
108,676 KB
testcase_21 AC 629 ms
109,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
p=list(map(int,input().split()))
B=450
st1=[0]*B*B
st2=[0]*B
f=0
for v in p[::-1]:
  l=0
  r=v
  yl=l//B
  yr=r//B
  if yl==yr:
    f+=sum(st1[l:r+1])
  else:
    f+=sum(st1[l:yl*B+B])
    f+=sum(st2[yl+1:yr])
    f+=sum(st1[yr*B:r+1])
  st1[v]+=1
  st2[v//B]+=1
m*=(f+m-1)//m
if m%2==1 and f%2==0:
  m*=2
print(m if (m-f)%2==0 else -1)
0