結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
31,072 KB
testcase_01 AC 220 ms
28,968 KB
testcase_02 AC 87 ms
15,320 KB
testcase_03 AC 169 ms
22,524 KB
testcase_04 AC 217 ms
26,808 KB
testcase_05 AC 162 ms
23,656 KB
testcase_06 AC 181 ms
25,332 KB
testcase_07 AC 58 ms
13,204 KB
testcase_08 AC 89 ms
15,932 KB
testcase_09 AC 228 ms
29,232 KB
testcase_10 AC 169 ms
23,988 KB
testcase_11 AC 116 ms
17,984 KB
testcase_12 AC 71 ms
14,260 KB
testcase_13 AC 286 ms
32,568 KB
testcase_14 AC 97 ms
16,600 KB
testcase_15 AC 170 ms
22,692 KB
testcase_16 AC 60 ms
13,084 KB
testcase_17 AC 89 ms
15,612 KB
testcase_18 AC 82 ms
15,096 KB
testcase_19 AC 94 ms
16,100 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 32 ms
10,624 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