結果

問題 No.2382 Amidakuji M
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-14 13:15:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-09-14 13:15:31
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 38 ms
53,376 KB
testcase_02 AC 39 ms
53,120 KB
testcase_03 AC 268 ms
89,344 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 315 ms
90,880 KB
testcase_07 AC 201 ms
84,864 KB
testcase_08 AC 79 ms
77,824 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 384 ms
98,432 KB
testcase_13 AC 39 ms
53,504 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
53,376 KB
testcase_18 WA -
testcase_19 AC 612 ms
108,800 KB
testcase_20 AC 589 ms
109,056 KB
testcase_21 AC 625 ms
108,544 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
print(m if (m-f)%2==0 else -1)
0