結果

問題 No.2382 Amidakuji M
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-14 13:13:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 262,912 KB
最終ジャッジ日時 2024-09-14 13:13:56
合計ジャッジ時間 5,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,880 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

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=l//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
print(m if (m-f)%2==0 else -1)
0