結果

問題 No.2486 Don't come next to me
ユーザー takumaiqtakumaiq
提出日時 2023-09-27 22:55:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,536 KB
最終ジャッジ日時 2024-07-20 17:24:29
合計ジャッジ時間 5,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 243 ms
31,068 KB
testcase_01 AC 221 ms
29,228 KB
testcase_02 AC 86 ms
15,448 KB
testcase_03 AC 168 ms
22,400 KB
testcase_04 AC 216 ms
26,680 KB
testcase_05 AC 166 ms
23,672 KB
testcase_06 AC 183 ms
25,332 KB
testcase_07 AC 59 ms
13,208 KB
testcase_08 AC 90 ms
15,812 KB
testcase_09 AC 224 ms
29,360 KB
testcase_10 AC 171 ms
23,984 KB
testcase_11 AC 115 ms
17,984 KB
testcase_12 AC 71 ms
14,516 KB
testcase_13 AC 289 ms
32,536 KB
testcase_14 AC 98 ms
16,472 KB
testcase_15 AC 169 ms
22,568 KB
testcase_16 AC 60 ms
13,080 KB
testcase_17 AC 88 ms
15,612 KB
testcase_18 AC 84 ms
15,104 KB
testcase_19 AC 96 ms
16,236 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B=[]
if A[0]!=1:
  B.append(A[0]-1)
for i in range(M-1):
  B.append(A[i+1]-A[i]-1)
if A[-1]!=N:
  B.append(N-A[-1])

def calc(n):
  if n==1:
    return 0
  elif n%2==1:
    return 2*calc((n-1)//2)+1
  else:
    return 0

ans=sum(b-calc(b) for b in B)
print(ans)
0